simple-nixos-fediverse/.forgejo/workflows/ci.ncl
Nicolas Jeannerod 52475a583c
Some checks are pending
/ check-pixelfed-garage (push) Waiting to run
/ nixosConfiguration-all (push) Waiting to run
Enter Nickel
2024-09-30 11:40:04 +02:00

68 lines
1.7 KiB
Plaintext

{
on = {
push.branches = ["main", "forgejo-ci-test"],
pull_request.types = ["opened", "synchronize", "reopened"],
},
jobs = {
nixosConfiguration-all = {
runs-on = "native",
steps = [
{ uses = "actions/checkout@v4" },
{ run = "nix build .#nixosConfigurations.all.config.system.build.toplevel" },
],
},
check-pixelfed-garage = {
runs-on = "native",
steps = [
{ uses = "actions/checkout@4" },
{ run = "nix build .#checks.x86_64-linux.pixelfed-garage -L" },
]
},
},
}
## jobs:
## ## NixOS configurations
## nixosConfiguration-all:
## runs-on: native
## steps:
## - uses: actions/checkout@v4
## - run: nix build .#nixosConfigurations.all.config.system.build.toplevel
## nixosConfiguration-mastodon:
## runs-on: native
## steps:
## - uses: actions/checkout@v4
## - run: nix build .#nixosConfigurations.mastodon.config.system.build.toplevel
## nixosConfiguration-peertube:
## runs-on: native
## steps:
## - uses: actions/checkout@v4
## - run: nix build .#nixosConfigurations.peertube.config.system.build.toplevel
## nixosConfiguration-pixelfed:
## runs-on: native
## steps:
## - uses: actions/checkout@v4
## - run: nix build .#nixosConfigurations.pixelfed.config.system.build.toplevel
## ## Checks
## check-mastodon-garage:
## runs-on: native
## steps:
## - uses: actions/checkout@v4
## - run: nix build .#checks.x86_64-linux.mastodon-garage -L
## check-pixelfed-garage:
## runs-on: native
## steps:
## - uses: actions/checkout@v4
## - run: nix build .#checks.x86_64-linux.pixelfed-garage -L