add docker runner;
All checks were successful
Lint / lint (push) Successful in 2s
Plex Update / update (push) Successful in 13s
Testing / lint (push) Successful in 4s

This commit is contained in:
Vivian 2023-06-07 14:03:42 +02:00
parent 6f16efd9cd
commit 224cd28112
3 changed files with 22 additions and 1 deletions

View file

@ -0,0 +1,12 @@
name: Testing
on: [push]
jobs:
lint:
runs-on: docker
steps:
- uses: actions/checkout@v3
- run: ls -l
- run: uname -a

View file

@ -74,7 +74,7 @@
apply-local = pkgs.writeShellScriptBin "apply-local" ''
"${
colmena.packages.${system}.colmena
}"/bin/colmena apply-local --sudo --keep-result $@
}"/bin/colmena apply-local --sudo $@
'';
fast-repl = pkgs.writeShellScriptBin "fast-repl" ''

View file

@ -40,6 +40,15 @@ in {
};
services.gitea-actions-runner.instances = {
runner_1 = {
name = "runner_1";
enable = true;
labels = [
"docker:docker://node:16-bullseye"
];
url = "https://git.0x76.dev";
tokenFile = "${vs.gitea_runner}/token_runner_1";
};
nix-native = {
enable = true;
name = "nix-native";