colmena/.github/workflows/build.yml

52 lines
1.4 KiB
YAML
Raw Normal View History

2021-02-11 20:55:45 +01:00
name: Build
on:
pull_request:
push:
jobs:
build:
2021-11-17 06:56:28 +01:00
strategy:
matrix:
include:
- label: x86_64-linux
2022-08-17 04:15:43 +02:00
image: ubuntu-latest
- label: aarch64-linux
image: ubuntu-latest
system: aarch64-linux
- label: x86_64-darwin
2022-08-19 01:38:01 +02:00
image: macos-12
2022-08-17 04:15:43 +02:00
name: ${{ matrix.label }}
runs-on: ${{ matrix.image }}
2021-02-11 20:55:45 +01:00
steps:
- uses: actions/checkout@v3.3.0
2022-08-17 04:15:43 +02:00
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@e1f2e54ff90b012560f19481e250bb7d909f3acd
- name: Set up QEMU
uses: docker/setup-qemu-action@v2.1.0
if: matrix.system != ''
- name: Generate System Flags
run: |
LOCAL_SYSTEM=$(nix-instantiate --eval --json -E 'builtins.currentSystem' | jq -r)
HOST_SYSTEM=${HOST_SYSTEM:-$LOCAL_SYSTEM}
if [[ "$LOCAL_SYSTEM" != "$HOST_SYSTEM" ]]; then
echo "system_flags=--system $HOST_SYSTEM" >>"$GITHUB_ENV"
echo "extra-platforms = $HOST_SYSTEM" | sudo tee -a /etc/nix/nix.conf
fi
env:
HOST_SYSTEM: '${{ matrix.system }}'
- name: Enable Binary Cache
uses: cachix/cachix-action@v12
2021-11-18 07:21:00 +01:00
with:
name: colmena
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
2021-11-17 06:56:28 +01:00
- name: Build Colmena
run: nix build -L $system_flags
- name: Build manual
run: nix build .#manual -L