colmena/.github/workflows/build.yml

56 lines
1.7 KiB
YAML
Raw Normal View History

2021-02-11 20:55:45 +01:00
name: Build
on:
pull_request:
push:
jobs:
build:
runs-on: ubuntu-latest
2021-11-17 06:56:28 +01:00
strategy:
matrix:
nix:
- name: 2.3.16
url: https://releases.nixos.org/nix/nix-2.3.16/install
- name: 2.4
url: https://releases.nixos.org/nix/nix-2.4/install
- name: 2.5pre
url: https://github.com/numtide/nix-unstable-installer/releases/download/nix-2.5pre20211026_5667822/install
2021-02-11 20:55:45 +01:00
steps:
2021-10-28 23:09:35 +02:00
- uses: actions/checkout@v2.3.5
2021-11-17 06:56:28 +01:00
- uses: cachix/install-nix-action@v15
with:
2021-11-17 06:56:28 +01:00
install_url: ${{ matrix.nix.url }}
extra_nix_config: |
experimental-features = nix-command flakes
- run: nix flake check
2021-11-17 06:56:28 +01:00
if: ${{ !contains(matrix.nix.name, '2.3') }}
- name: Build Colmena
run: nix build -L
if: ${{ !contains(matrix.nix.name, '2.3') }}
- name: Build Colmena with flake-compat
run: nix-build
2021-02-11 20:55:45 +01:00
tests:
runs-on: ubuntu-latest
2021-11-17 06:56:28 +01:00
strategy:
matrix:
nix:
- name: 2.3.16
url: https://releases.nixos.org/nix/nix-2.3.16/install
- name: 2.4
url: https://releases.nixos.org/nix/nix-2.4/install
- name: 2.5pre
url: https://github.com/numtide/nix-unstable-installer/releases/download/nix-2.5pre20211026_5667822/install
2021-02-11 20:55:45 +01:00
steps:
2021-10-28 23:09:35 +02:00
- uses: actions/checkout@v2.3.5
2021-11-17 06:56:28 +01:00
- uses: cachix/install-nix-action@v15
with:
2021-11-17 06:56:28 +01:00
install_url: ${{ matrix.nix.url }}
extra_nix_config: |
experimental-features = nix-command flakes
2021-06-29 10:15:36 +02:00
- run: nix-shell --run "cargo test"
2021-11-17 06:56:28 +01:00
if: ${{ !contains(matrix.nix.name, '2.3') }}
- run: nix-shell --run "cargo test -- --skip flake"
if: ${{ contains(matrix.nix.name, '2.3') }}