-
Notifications
You must be signed in to change notification settings - Fork 550
38 lines (35 loc) · 1001 Bytes
/
binaries.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Passenger generic binaries tests CI tests
env:
ENTERPRISE: 0
on:
push:
branches: [ 'stable-*', 'feature/*' ]
pull_request:
branches: [ 'stable-*', 'feature/*' ]
jobs:
build:
name: "Binary automation ${{ matrix.os.family }}-${{ matrix.arch }}"
strategy:
fail-fast: false
matrix:
os:
- img: macos-latest
family: macos
- img: ubuntu-latest
family: linux
arch:
- x86_64
- aarch64
runs-on: ${{ matrix.os.img }}
steps:
- uses: actions/checkout@v4
with:
submodules: true
- run: ./dev/ci/binaries/prepare-macos
if: matrix.os.family == 'macos'
- run: ./dev/ci/binaries/build-${{ matrix.os.family }}
- uses: actions/upload-artifact@v4
with:
name: binaries-${{ matrix.os.family }}-${{ matrix.arch }}
path: 'output-${{ matrix.os.family }}-${{ matrix.arch }}/**/*'
- run: ./dev/ci/binaries/test-${{ matrix.os.family }}