-
-
Notifications
You must be signed in to change notification settings - Fork 10
79 lines (65 loc) · 2.3 KB
/
build.yaml
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
name: Builds
on:
pull_request:
push:
branches:
- "master"
paths:
- "**.nix"
- ".github/workflows/*.yaml"
jobs:
determine-matrix:
name: Figure out the packages we need to build
runs-on: ubuntu-latest
outputs:
phps: ${{ steps.set-phps.outputs.phps }}
steps:
- name: Set up Git repository
uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- name: Build PHP matrix
id: set-phps
run: |
echo phps=$(
nix eval --json --impure --expr 'builtins.filter (x: builtins.substring 0 3 x == "php") (builtins.attrNames (import ./.).packages.x86_64-linux)'
) >> $GITHUB_OUTPUT
build:
name: "${{ matrix.phps }} on ${{ matrix.archs.arch }}"
needs: [determine-matrix]
runs-on: ${{ matrix.archs.os }}
strategy:
fail-fast: false
matrix:
phps: ${{fromJson(needs.determine-matrix.outputs.phps)}}
archs:
[
{ os: ubuntu-latest, arch: x86_64-linux },
{ os: macOS-latest, arch: x86_64-darwin },
{ os: macos-14, arch: aarch64-darwin },
]
steps:
- name: Set up Git repository
uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- name: Run the Magic Nix Cache
uses: DeterminateSystems/magic-nix-cache-action@main
- uses: cachix/cachix-action@v15
with:
name: nix-shell
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
extraPullNames: fossar
- name: Build ${{ matrix.phps }} binary
run: |
nix build .#${{ matrix.phps }}
- name: Build ${{ matrix.phps }} environment
run: |
nix build .#env-${{ matrix.phps }}
- name: Build ${{ matrix.phps }} with all extensions enabled
continue-on-error: true
run: |
NIXPKGS_ALLOW_BROKEN=1 \
NIXPKGS_ALLOW_UNFREE=1 \
NIXPKGS_ALLOW_INSECURE=1 \
nix build --impure --expr 'let pkgs = (import ./.).outputs.packages.${builtins.currentSystem}; php = pkgs.${{ matrix.phps }}; allExtensions = (builtins.attrNames php.extensions); in (import ./.).api.makePhp pkgs {php = "${{ matrix.phps }}"; withExtensions = allExtensions;}'