Skip to content

Commit

Permalink
Merge pull request zcash#6775 from zcash/ci-testing
Browse files Browse the repository at this point in the history
Migrate CI builds to GitHub larger runners
  • Loading branch information
str4d authored Nov 15, 2023
2 parents 883fa68 + 96ea8e8 commit b1c0812
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/audits.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Audits

on: [push, pull_request]
on:
pull_request:
push:
branches: master

permissions:
contents: read
Expand Down
17 changes: 10 additions & 7 deletions .github/workflows/build.yml → .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
name: Build
name: CI

on: [push, pull_request]
on:
pull_request:
push:
branches: master

jobs:
build:
name: Tier ${{ matrix.tier }} platform ${{ matrix.platform }}
name: Build tier ${{ matrix.tier }} platform ${{ matrix.platform }}
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.tier == 3 }}
strategy:
Expand All @@ -13,12 +16,12 @@ jobs:
- name: ubuntu-20.04
tier: 1
platform: Ubuntu 20.04
os: ubuntu-20.04
os: ubuntu-20.04-8cores

- name: ubuntu-22.04
tier: 3
platform: Ubuntu 22.04
os: ubuntu-22.04
os: ubuntu-22.04-8cores

- name: macos-11
tier: 3
Expand All @@ -34,15 +37,15 @@ jobs:
- name: mingw32
tier: 3
platform: Windows (64-bit MinGW)
os: ubuntu-latest
os: ubuntu-22.04-8cores
cross_deps: >
mingw-w64
host: HOST=x86_64-w64-mingw32

- name: aarch64-linux
tier: 3
platform: ARM64 Linux
os: ubuntu-latest
os: ubuntu-22.04-8cores
cross_deps: >
g++-aarch64-linux-gnu
host: HOST=aarch64-linux-gnu
Expand Down

0 comments on commit b1c0812

Please sign in to comment.