Compare commits

...

2 commits

Author SHA1 Message Date
6342f2f19f
forgejo: install pkgs for runners
Some checks failed
/ check (push) Failing after 26s
2023-10-05 15:54:57 -04:00
4316a26a57
ci: try using different installer 2023-10-05 15:54:47 -04:00
2 changed files with 13 additions and 9 deletions

View file

@ -3,12 +3,6 @@ jobs:
check: check:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: https://code.forgejo.org/actions/checkout@v3 - uses: actions/checkout@v3
- uses: https://github.com/cachix/install-nix-action@v22 - uses: https://github.com/DeterminateSystems/nix-installer-action@main
with: - run: nix flake check
install_url: https://nixos.org/nix/install
extra_nix_config: |
auto-optimise-store = true
access-tokens = ${{ secrets.FORGEJO_TOKEN }}
experimental-features = nix-command flakes
- run: nix flake check

View file

@ -1,4 +1,5 @@
{ {
pkgs,
lib, lib,
config, config,
... ...
@ -47,5 +48,14 @@
"ubuntu-latest:docker://node:18-bullseye" "ubuntu-latest:docker://node:18-bullseye"
#"native:host" #"native:host"
]; ];
hostPackages = with pkgs; [
sudo
bash
curl
coreutils
wget
gitMinimal
wget
];
}; };
} }