install stack-orchestrator from release

This commit is contained in:
Roy Crihfield 2024-08-03 21:09:57 -05:00
parent 0c67a151f2
commit 02bc31afc2

View File

@ -9,7 +9,7 @@ on:
- ci-test - ci-test
env: env:
SO_VERSION: roysc/fix-eth-stacks SO_VERSION: latest
SYSTEM_TESTS_REF: roysc/test-blob-tx SYSTEM_TESTS_REF: roysc/test-blob-tx
FIXTURENET_ETH_STACKS_REF: roysc/add-ipld-eth-server FIXTURENET_ETH_STACKS_REF: roysc/add-ipld-eth-server
@ -30,13 +30,11 @@ jobs:
with: with:
python-version: 3.11 python-version: 3.11
- name: "Install stack-orchestrator" - name: Install stack-orchestrator
uses: actions/checkout@v3 run: |
with: curl -L -O https://github.com/cerc-io/stack-orchestrator/releases/download/$SO_VERSION/laconic-so
repository: cerc-io/stack-orchestrator chmod +x laconic-so
ref: ${{ env.SO_VERSION }} echo PATH="$PATH:$(pwd)" >> $GITHUB_ENV
path: ./stack-orchestrator
- run: pip install ./stack-orchestrator
- name: "Clone system-tests" - name: "Clone system-tests"
uses: actions/checkout@v3 uses: actions/checkout@v3
@ -62,9 +60,8 @@ jobs:
run: docker compose -f test/compose.yml up --wait --quiet-pull run: docker compose -f test/compose.yml up --wait --quiet-pull
- name: "Run tests" - name: "Run tests"
working-directory: ./system-tests working-directory: ./system-tests
# Work around dependency conflicts: # Work around dependency conflict in system-tests:
# - web3 uses an older eth-account until (unreleased) v7 # web3 uses an older eth-account until (unreleased) v7
# - old pydantic is pinned by stack-orchestrator
run: | run: |
pip3 install -r requirements.txt pip3 install -r requirements.txt
pip3 install --no-deps 'eth-account>=0.12.3,<0.13' pip3 install --no-deps 'eth-account>=0.12.3,<0.13'