mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
fix: disable koishi and goliath builds
This commit is contained in:
parent
3711f73f2f
commit
a4259bcbd0
3 changed files with 2 additions and 122 deletions
122
.github/workflows/nodes.yml
vendored
122
.github/workflows/nodes.yml
vendored
|
|
@ -92,128 +92,6 @@ jobs:
|
||||||
command: ci-build-cache
|
command: ci-build-cache
|
||||||
quiet: false
|
quiet: false
|
||||||
stdin: ${{ runner.temp }}/ci.build.cache
|
stdin: ${{ runner.temp }}/ci.build.cache
|
||||||
nixos-goliath:
|
|
||||||
name: nodes-nixos-goliath
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- id: checkout
|
|
||||||
name: git clone
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
submodules: false
|
|
||||||
- id: nix-install
|
|
||||||
name: nix install
|
|
||||||
uses: arcnmx/ci/actions/nix/install@v0.7
|
|
||||||
- env:
|
|
||||||
CACHIX_SIGNING_KEY: ${{ secrets.CACHIX_SIGNING_KEY }}
|
|
||||||
DISCORD_WEBHOOK_LINK: ${{ secrets.DISCORD_WEBHOOK_LINK }}
|
|
||||||
NF_CONFIG_ROOT: ${{ github.workspace }}
|
|
||||||
NF_UPDATE_CACHIX_PUSH: '1'
|
|
||||||
id: goliath
|
|
||||||
name: build system closure for goliath
|
|
||||||
run: nix run .#nf-build-system -- nixosConfigurations.goliath.config.system.build.toplevel
|
|
||||||
goliath NixOS
|
|
||||||
- id: ci-dirty
|
|
||||||
name: nix test dirty
|
|
||||||
uses: arcnmx/ci/actions/nix/run@v0.7
|
|
||||||
with:
|
|
||||||
attrs: ci.job.nixos-goliath.run.test
|
|
||||||
command: ci-build-dirty
|
|
||||||
quiet: false
|
|
||||||
stdout: ${{ runner.temp }}/ci.build.dirty
|
|
||||||
- id: ci-test
|
|
||||||
name: nix test build
|
|
||||||
uses: arcnmx/ci/actions/nix/run@v0.7
|
|
||||||
with:
|
|
||||||
attrs: ci.job.nixos-goliath.run.test
|
|
||||||
command: ci-build-realise
|
|
||||||
ignore-exit-code: true
|
|
||||||
quiet: false
|
|
||||||
stdin: ${{ runner.temp }}/ci.build.dirty
|
|
||||||
- env:
|
|
||||||
CI_EXIT_CODE: ${{ steps.ci-test.outputs.exit-code }}
|
|
||||||
id: ci-summary
|
|
||||||
name: nix test results
|
|
||||||
uses: arcnmx/ci/actions/nix/run@v0.7
|
|
||||||
with:
|
|
||||||
attrs: ci.job.nixos-goliath.run.test
|
|
||||||
command: ci-build-summarise
|
|
||||||
quiet: false
|
|
||||||
stdin: ${{ runner.temp }}/ci.build.dirty
|
|
||||||
stdout: ${{ runner.temp }}/ci.build.cache
|
|
||||||
- env:
|
|
||||||
CACHIX_SIGNING_KEY: ${{ secrets.CACHIX_SIGNING_KEY }}
|
|
||||||
id: ci-cache
|
|
||||||
if: always()
|
|
||||||
name: nix test cache
|
|
||||||
uses: arcnmx/ci/actions/nix/run@v0.7
|
|
||||||
with:
|
|
||||||
attrs: ci.job.nixos-goliath.run.test
|
|
||||||
command: ci-build-cache
|
|
||||||
quiet: false
|
|
||||||
stdin: ${{ runner.temp }}/ci.build.cache
|
|
||||||
nixos-koishi:
|
|
||||||
name: nodes-nixos-koishi
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- id: checkout
|
|
||||||
name: git clone
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
submodules: false
|
|
||||||
- id: nix-install
|
|
||||||
name: nix install
|
|
||||||
uses: arcnmx/ci/actions/nix/install@v0.7
|
|
||||||
- env:
|
|
||||||
CACHIX_SIGNING_KEY: ${{ secrets.CACHIX_SIGNING_KEY }}
|
|
||||||
DISCORD_WEBHOOK_LINK: ${{ secrets.DISCORD_WEBHOOK_LINK }}
|
|
||||||
NF_CONFIG_ROOT: ${{ github.workspace }}
|
|
||||||
NF_UPDATE_CACHIX_PUSH: '1'
|
|
||||||
id: koishi
|
|
||||||
name: build system closure for koishi
|
|
||||||
run: nix run .#nf-build-system -- nixosConfigurations.koishi.config.system.build.toplevel
|
|
||||||
koishi NixOS
|
|
||||||
- id: ci-dirty
|
|
||||||
name: nix test dirty
|
|
||||||
uses: arcnmx/ci/actions/nix/run@v0.7
|
|
||||||
with:
|
|
||||||
attrs: ci.job.nixos-koishi.run.test
|
|
||||||
command: ci-build-dirty
|
|
||||||
quiet: false
|
|
||||||
stdout: ${{ runner.temp }}/ci.build.dirty
|
|
||||||
- id: ci-test
|
|
||||||
name: nix test build
|
|
||||||
uses: arcnmx/ci/actions/nix/run@v0.7
|
|
||||||
with:
|
|
||||||
attrs: ci.job.nixos-koishi.run.test
|
|
||||||
command: ci-build-realise
|
|
||||||
ignore-exit-code: true
|
|
||||||
quiet: false
|
|
||||||
stdin: ${{ runner.temp }}/ci.build.dirty
|
|
||||||
- env:
|
|
||||||
CI_EXIT_CODE: ${{ steps.ci-test.outputs.exit-code }}
|
|
||||||
id: ci-summary
|
|
||||||
name: nix test results
|
|
||||||
uses: arcnmx/ci/actions/nix/run@v0.7
|
|
||||||
with:
|
|
||||||
attrs: ci.job.nixos-koishi.run.test
|
|
||||||
command: ci-build-summarise
|
|
||||||
quiet: false
|
|
||||||
stdin: ${{ runner.temp }}/ci.build.dirty
|
|
||||||
stdout: ${{ runner.temp }}/ci.build.cache
|
|
||||||
- env:
|
|
||||||
CACHIX_SIGNING_KEY: ${{ secrets.CACHIX_SIGNING_KEY }}
|
|
||||||
id: ci-cache
|
|
||||||
if: always()
|
|
||||||
name: nix test cache
|
|
||||||
uses: arcnmx/ci/actions/nix/run@v0.7
|
|
||||||
with:
|
|
||||||
attrs: ci.job.nixos-koishi.run.test
|
|
||||||
command: ci-build-cache
|
|
||||||
quiet: false
|
|
||||||
stdin: ${{ runner.temp }}/ci.build.cache
|
|
||||||
nixos-mai:
|
nixos-mai:
|
||||||
name: nodes-nixos-mai
|
name: nodes-nixos-mai
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
|
||||||
|
|
@ -107,6 +107,7 @@ _: let
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
arch = "x86_64";
|
arch = "x86_64";
|
||||||
|
ci.enable = false; # System currently not used
|
||||||
type = "NixOS";
|
type = "NixOS";
|
||||||
modules = [
|
modules = [
|
||||||
hostConfig
|
hostConfig
|
||||||
|
|
|
||||||
|
|
@ -90,6 +90,7 @@ _: let
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
arch = "x86_64";
|
arch = "x86_64";
|
||||||
|
ci.enable = false; # Closure too large
|
||||||
type = "NixOS";
|
type = "NixOS";
|
||||||
modules = [
|
modules = [
|
||||||
hostConfig
|
hostConfig
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue