Compare commits
5 Commits
afe3e8f6ef
...
f8a5876ee7
Author | SHA1 | Date | |
---|---|---|---|
f8a5876ee7 | |||
2e278ede55 | |||
02bc31afc2 | |||
0c67a151f2 | |||
dbbfc69918 |
@ -9,7 +9,7 @@ on:
|
||||
- ci-test
|
||||
|
||||
env:
|
||||
SO_VERSION: roysc/fix-eth-stacks
|
||||
SO_VERSION: v1.1.0-36d4969-202407091537
|
||||
SYSTEM_TESTS_REF: roysc/test-blob-tx
|
||||
FIXTURENET_ETH_STACKS_REF: main
|
||||
|
||||
@ -18,7 +18,9 @@ jobs:
|
||||
name: Run Beacon collector tests
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
progress: false
|
||||
- uses: actions/setup-go@v4
|
||||
with:
|
||||
go-version-file: 'go.mod'
|
||||
@ -30,21 +32,20 @@ jobs:
|
||||
with:
|
||||
python-version: 3.11
|
||||
|
||||
- name: "Install stack-orchestrator"
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
repository: cerc-io/stack-orchestrator
|
||||
ref: ${{ env.SO_VERSION }}
|
||||
path: ./stack-orchestrator
|
||||
- run: pip install ./stack-orchestrator
|
||||
- name: Install stack-orchestrator
|
||||
run: |
|
||||
curl -L -O https://github.com/cerc-io/stack-orchestrator/releases/download/$SO_VERSION/laconic-so
|
||||
chmod +x laconic-so
|
||||
echo PATH="$PATH:$(pwd)" >> $GITHUB_ENV
|
||||
|
||||
- name: "Clone system-tests"
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
repository: cerc-io/system-tests
|
||||
ref: ${{ env.SYSTEM_TESTS_REF }}
|
||||
path: ./system-tests
|
||||
token: ${{ secrets.CICD_REPO_TOKEN }}
|
||||
progress: false
|
||||
- name: "Install pytest"
|
||||
working-directory: ./system-tests
|
||||
run: pip3 install pytest
|
||||
@ -62,12 +63,11 @@ jobs:
|
||||
run: docker compose -f test/compose.yml up --wait --quiet-pull
|
||||
- name: "Run tests"
|
||||
working-directory: ./system-tests
|
||||
# Work around dependency conflicts:
|
||||
# - web3 uses an older eth-account until (unreleased) v7
|
||||
# - old pydantic is pinned by stack-orchestrator
|
||||
# Work around dependency conflict in system-tests:
|
||||
# web3 uses an older eth-account until (unreleased) v7
|
||||
run: |
|
||||
pip3 install -r requirements.txt
|
||||
pip3 install --no-deps 'eth-account>=0.12.3'
|
||||
pip3 install --no-deps 'eth-account>=0.12.3,<0.13'
|
||||
pip3 install 'pydantic>=2.0.0'
|
||||
python3 -m pytest -vv -k test_blob_tx
|
||||
|
||||
@ -75,7 +75,9 @@ jobs:
|
||||
name: Run Blobscan scraper tests
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
progress: false
|
||||
- uses: actions/setup-go@v4
|
||||
with:
|
||||
go-version-file: 'go.mod'
|
||||
|
@ -20,7 +20,8 @@ if [[ -z $SKIP_BUILD ]]; then
|
||||
# Prevent conflicting tty output
|
||||
export BUILDKIT_PROGRESS=plain
|
||||
|
||||
$laconic_so setup-repositories
|
||||
$laconic_so setup-repositories \
|
||||
--branches git.vdb.to/cerc-io/ipld-eth-server@roysc/fix-blob-tx
|
||||
$laconic_so build-containers
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user