switch back to github actions as nixbuild does not support kvm yet
This commit is contained in:
parent
7b7f36de55
commit
b46deb91ec
1 changed files with 38 additions and 9 deletions
47
.github/workflows/build.yaml
vendored
47
.github/workflows/build.yaml
vendored
|
|
@ -1,10 +1,39 @@
|
||||||
name: build
|
# name: build
|
||||||
on: push
|
# on: push
|
||||||
|
# jobs:
|
||||||
|
# checks:
|
||||||
|
# uses: nixbuild/nixbuild-action/.github/workflows/ci-workflow.yml@v19
|
||||||
|
# with:
|
||||||
|
# nix_conf: |
|
||||||
|
# allow-import-from-derivation = true
|
||||||
|
# secrets:
|
||||||
|
# nixbuild_token: ${{ secrets.nixbuild_token }}
|
||||||
|
|
||||||
|
|
||||||
|
name: "build"
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
push:
|
||||||
|
branches: [ "main" ]
|
||||||
jobs:
|
jobs:
|
||||||
checks:
|
tests:
|
||||||
uses: nixbuild/nixbuild-action/.github/workflows/ci-workflow.yml@v19
|
runs-on: ubuntu-latest
|
||||||
with:
|
steps:
|
||||||
nix_conf: |
|
- name: Checkout repository
|
||||||
allow-import-from-derivation = true
|
uses: actions/checkout@v4
|
||||||
secrets:
|
- name: Install Nix
|
||||||
nixbuild_token: ${{ secrets.nixbuild_token }}
|
uses: DeterminateSystems/nix-installer-action@main
|
||||||
|
with:
|
||||||
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
extra-conf: "system-features = nixos-test benchmark big-parallel kvm"
|
||||||
|
- name: Setup Caching
|
||||||
|
uses: cachix/cachix-action@v14
|
||||||
|
with:
|
||||||
|
name: selfhostblocks
|
||||||
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
||||||
|
- name: Run tests
|
||||||
|
run: |
|
||||||
|
nix run github:Mic92/nix-fast-build -- \
|
||||||
|
--skip-cached --no-nom \
|
||||||
|
--max-jobs 1 \
|
||||||
|
--flake ".#checks.$(nix eval --raw --impure --expr builtins.currentSystem)"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue