49 lines
1.3 KiB
YAML
49 lines
1.3 KiB
YAML
name: Test
|
|
|
|
on:
|
|
- push
|
|
- pull_request
|
|
|
|
jobs:
|
|
test:
|
|
name: Run NixOS test
|
|
runs-on: nix
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Run tests
|
|
run: |
|
|
nix --print-build-logs --experimental-features 'nix-command flakes' flake check
|
|
nix build --out-link "result" --print-out-paths --print-build-logs .#checks.x86_64-linux.nixos-tests
|
|
|
|
- name: Upload test output
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: "nixos-vm-output"
|
|
path: result/*
|
|
retention-days: 1
|
|
|
|
dist:
|
|
name: Create distribution
|
|
runs-on: nix
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Build for test
|
|
id: build-test
|
|
run: >-
|
|
export FORTIFY_REV="$(git rev-parse --short HEAD)" &&
|
|
sed -i.old 's/version = /version = "0.0.0-'$FORTIFY_REV'"; # version = /' package.nix &&
|
|
nix build --print-out-paths --print-build-logs .#dist &&
|
|
mv package.nix.old package.nix &&
|
|
echo "rev=$FORTIFY_REV" >> $GITHUB_OUTPUT
|
|
|
|
- name: Upload test build
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: "fortify-${{ steps.build-test.outputs.rev }}"
|
|
path: result/*
|
|
retention-days: 1
|