mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 15:16:43 +00:00
move integration ci
This commit is contained in:
parent
ee5b7c04aa
commit
63cd7a3273
2 changed files with 4 additions and 40 deletions
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
|
|
@ -60,4 +60,7 @@ jobs:
|
|||
run: make test
|
||||
|
||||
- name: Data race tests
|
||||
run: make test-race
|
||||
run: make test-race
|
||||
|
||||
- name: test-integration
|
||||
run: make test-integration
|
||||
39
.github/workflows/test-integration.yml
vendored
39
.github/workflows/test-integration.yml
vendored
|
|
@ -1,39 +0,0 @@
|
|||
name: Integration tests
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- "**"
|
||||
- "!master"
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
types: [opened, synchronize, closed]
|
||||
jobs:
|
||||
tests:
|
||||
if: (!(github.event.action == 'closed' && github.event.pull_request.merged != true))
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ ubuntu-20.04, macos-11 ] # list of os: https://github.com/actions/virtual-environments
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- run: git submodule update --init --recursive --force
|
||||
- uses: actions/setup-go@v3
|
||||
with:
|
||||
go-version: 1.18.x
|
||||
- name: Install dependencies on Linux
|
||||
if: runner.os == 'Linux'
|
||||
run: sudo apt update && sudo apt install build-essential
|
||||
|
||||
- uses: actions/cache@v3
|
||||
with:
|
||||
path: |
|
||||
~/.cache/go-build
|
||||
~/Library/Caches/go-build
|
||||
~/go/pkg/mod
|
||||
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
||||
restore-keys: ${{ runner.os }}-go-
|
||||
|
||||
- name: test-integration
|
||||
run: make test-integration
|
||||
Loading…
Reference in a new issue