-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test-integration-erigon.yml (#12660)
This PR adds test-integration-erigon.yml, which takes over test-integration.yml --------- Co-authored-by: Michele Modolo <[email protected]>
- Loading branch information
1 parent
cc86623
commit 6975dcf
Showing
1 changed file
with
77 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
name: Integration tests - ERIGON | ||
on: | ||
push: | ||
branches: | ||
- test-integration-michele | ||
- main | ||
- 'release/**' | ||
pull_request: | ||
branches: | ||
- main | ||
types: | ||
- opened | ||
- reopened | ||
- synchronize | ||
- ready_for_review | ||
schedule: | ||
- cron: '20 16 * * *' # daily at 16:20 UTC | ||
workflow_dispatch: | ||
|
||
jobs: | ||
tests-mac-linux: | ||
strategy: | ||
matrix: | ||
# list of os: https://github.com/actions/virtual-environments | ||
os: | ||
- ubuntu-22.04 | ||
- macos-14 | ||
- ubuntu-latest-erigontests-large | ||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- name: declaring runners | ||
run: | | ||
set +x | ||
echo "I am being served by this runner: $RUNNER_NAME" | ||
- uses: actions/checkout@v4 | ||
- run: git submodule update --init --recursive --force | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: '1.23' | ||
cache: ${{ contains(fromJSON('["refs/heads/main","refs/heads/release/2.60","refs/heads/release/2.61"]'), github.ref) }} | ||
- name: Install dependencies on Linux | ||
if: runner.os == 'Linux' | ||
run: sudo apt update && sudo apt install build-essential | ||
- name: test-integration | ||
run: make test-integration | ||
|
||
tests-windows: | ||
strategy: | ||
matrix: | ||
os: [ windows-2022 ] | ||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: git submodule update --init --recursive --force | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: '1.23' | ||
|
||
- uses: actions/cache@v4 | ||
with: | ||
path: | | ||
C:\ProgramData\chocolatey\lib\mingw | ||
C:\ProgramData\chocolatey\lib\cmake | ||
key: chocolatey-${{ matrix.os }} | ||
- name: Install dependencies | ||
run: | | ||
choco upgrade mingw -y --no-progress --version 13.2.0 | ||
choco install cmake -y --no-progress --version 3.27.8 | ||
- name: test-integration | ||
run: .\wmake.ps1 test-integration | ||
|
||
|
||
|
||
|