Add ARM32 version of PR fast build workflow (#3503)

Unfortunately, due to bug https://github.com/moby/moby/issues/41217,
ARM and ARM64 versions cannot share the same jobs through a matrix
setting.
This commit is contained in:
Paulo Matos 2020-11-16 15:46:35 +01:00 committed by GitHub
parent c8e34be4d9
commit c3aa63db37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 13 deletions

View File

@ -0,0 +1,24 @@
name: ARM32 Linux Fast Build
on: [pull_request]
jobs:
build-racket3m:
runs-on: [self-hosted, Linux, ARM]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 100
- name: Build Racket 3m
run: make CPUS=$(nproc) PKGS="" bc-in-place
build-racketcs:
runs-on: [self-hosted, Linux, ARM]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 100
- name: Build Racket CS
run: make CPUS=$(nproc) PKGS="" cs-in-place

View File

@ -1,4 +1,4 @@
name: ARM Linux Fast Build
name: ARM64 Linux Fast Build
on: [pull_request]
@ -7,12 +7,7 @@ jobs:
container:
image: racket/racket-ci:latest
strategy:
fail-fast: false
matrix:
arch: [ARM64]
runs-on: [self-hosted, Linux, '${{ matrix.arch }}']
runs-on: [self-hosted, Linux, ARM64]
steps:
- uses: actions/checkout@v2
@ -25,12 +20,7 @@ jobs:
container:
image: racket/racket-ci:latest
strategy:
fail-fast: false
matrix:
arch: [ARM64]
runs-on: [self-hosted, Linux, '${{ matrix.arch }}']
runs-on: [self-hosted, Linux, ARM64]
steps:
- uses: actions/checkout@v2