2023-04-20 00:20:00 +00:00
|
|
|
name: Fixturenet-Eth-Test
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2023-10-13 02:40:39 +00:00
|
|
|
branches: '*'
|
|
|
|
paths:
|
|
|
|
- '!**'
|
|
|
|
- '.gitea/workflows/triggers/fixturenet-eth-test'
|
2023-04-20 00:20:00 +00:00
|
|
|
|
2023-08-17 19:24:06 +00:00
|
|
|
|
2023-04-20 00:20:00 +00:00
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
name: "Run an Ethereum fixturenet test"
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: "Clone project repository"
|
|
|
|
uses: actions/checkout@v3
|
2023-10-13 03:53:47 +00:00
|
|
|
# At present the stock setup-python action fails on Linux/aarch64
|
|
|
|
# Conditional steps below workaroud this by using deadsnakes for that case only
|
|
|
|
- name: "Install Python for ARM on Linux"
|
|
|
|
if: ${{ runner.arch == 'arm64' && runner.os == 'Linux' }}
|
|
|
|
uses: deadsnakes/action@v3.0.1
|
|
|
|
with:
|
|
|
|
python-version: '3.8'
|
|
|
|
- name: "Install Python cases other than ARM on Linux"
|
|
|
|
if: ${{ ! (runner.arch == 'arm64' && runner.os == 'Linux') }}
|
2023-07-20 02:40:04 +00:00
|
|
|
uses: actions/setup-python@v4
|
2023-04-20 00:20:00 +00:00
|
|
|
with:
|
|
|
|
python-version: '3.8'
|
|
|
|
- name: "Print Python version"
|
|
|
|
run: python3 --version
|
|
|
|
- name: "Install shiv"
|
|
|
|
run: pip install shiv
|
|
|
|
- name: "Generate build version file"
|
|
|
|
run: ./scripts/create_build_tag_file.sh
|
|
|
|
- name: "Build local shiv package"
|
|
|
|
run: ./scripts/build_shiv_package.sh
|
|
|
|
- name: "Run fixturenet-eth tests"
|
|
|
|
run: ./tests/fixturenet-eth/run-test.sh
|
2024-04-05 08:27:46 +00:00
|
|
|
- name: Notify Vulcanize Slack on CI failure
|
2024-04-05 09:26:08 +00:00
|
|
|
if: ${{ always() && github.ref_name == 'main' }}
|
2024-04-05 08:27:46 +00:00
|
|
|
uses: ravsamhq/notify-slack-action@v2
|
|
|
|
with:
|
|
|
|
status: ${{ job.status }}
|
|
|
|
notify_when: 'failure'
|
|
|
|
env:
|
|
|
|
SLACK_WEBHOOK_URL: ${{ secrets.VULCANIZE_SLACK_CI_ALERTS }}
|
|
|
|
- name: Notify DeepStack Slack on CI failure
|
2024-04-05 09:26:08 +00:00
|
|
|
if: ${{ always() && github.ref_name == 'main' }}
|
2024-04-05 08:27:46 +00:00
|
|
|
uses: ravsamhq/notify-slack-action@v2
|
|
|
|
with:
|
|
|
|
status: ${{ job.status }}
|
|
|
|
notify_when: 'failure'
|
|
|
|
env:
|
|
|
|
SLACK_WEBHOOK_URL: ${{ secrets.DEEPSTACK_SLACK_CI_ALERTS }}
|