docs: add project status notice to readme #391
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Postman | |
on: | |
push: | |
branches: [ "master", "dev" ] | |
pull_request: | |
branches: [ "master", "dev" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Node | |
uses: actions/setup-node@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.18 | |
- name: Set up Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
default: true | |
- name: Install dependencies | |
run: | | |
sudo apt update | |
sudo apt install -y hwloc libhwloc-dev jq ocl-icd-opencl-dev | |
- name: Build | |
run: make clean all | |
- name: Build deps for postman tests | |
run: | | |
cd tests/postman | |
npm install | |
- name: Setup | |
run: echo "APIKEY=$(./estuary setup --username admin --password password1 | sed -e's/.*EST/EST/g' | tail -n1)" >> $GITHUB_ENV | |
- name: Run Estuary | |
run: | | |
./estuary configure | |
sed -i ~/.estuary -e 's/.*rate_limit.*/ "rate_limit": 2000000000/' | |
./estuary & | |
- name: Test | |
run: | | |
cd tests/postman | |
./run_tests.bash | |
env: | |
APIKEY: ${{env.APIKEY}} |