Compare commits
2 commits
daa4f8d9e3
...
9b8a7bcafb
Author | SHA1 | Date | |
---|---|---|---|
9b8a7bcafb | |||
3b7b8906c0 |
2 changed files with 12 additions and 11 deletions
8
.github/workflows/build.yaml
vendored
8
.github/workflows/build.yaml
vendored
|
@ -4,9 +4,9 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container: docker.io/jcollie/nixos-runner:12-7495ae12
|
container: docker.io/jcollie/nixos-runner:13-daa4f8d9
|
||||||
steps:
|
steps:
|
||||||
- run: ldd /__e/node16/bin/node
|
- run: ldd /__e/node16/bin/node
|
||||||
# - uses: actions/checkout@v3.5.2
|
- uses: actions/checkout@v3
|
||||||
# - run: nix -L build .#nixos-runner
|
- run: nix -L build .#nixos-runner
|
||||||
# - run: nix run .#push-container -- result --registry ghcr.io --repository jcollie/nixos-runner
|
- run: nix run .#push-container -- result --registry ghcr.io --repository jcollie/nixos-runner
|
||||||
|
|
15
flake.nix
15
flake.nix
|
@ -349,14 +349,15 @@
|
||||||
Env = [
|
Env = [
|
||||||
"USER=root"
|
"USER=root"
|
||||||
"PATH=${lib.concatStringsSep ":" [
|
"PATH=${lib.concatStringsSep ":" [
|
||||||
"/root/.nix-profile/bin"
|
"/root/.nix-profile/bin"
|
||||||
"/nix/var/nix/profiles/default/bin"
|
"/nix/var/nix/profiles/default/bin"
|
||||||
"/nix/var/nix/profiles/default/sbin"
|
"/nix/var/nix/profiles/default/sbin"
|
||||||
]}"
|
]}"
|
||||||
"MANPATH=${lib.concatStringsSep ":" [
|
"MANPATH=${lib.concatStringsSep ":" [
|
||||||
"/root/.nix-profile/share/man"
|
"/root/.nix-profile/share/man"
|
||||||
"/nix/var/nix/profiles/default/share/man"
|
"/nix/var/nix/profiles/default/share/man"
|
||||||
]}"
|
]}"
|
||||||
|
"LD_LIBRARY_PATH=${pkgs.stdenv.cc.cc.lib}/lib"
|
||||||
"SSL_CERT_FILE=${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt"
|
"SSL_CERT_FILE=${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt"
|
||||||
"GIT_SSL_CAINFO=${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt"
|
"GIT_SSL_CAINFO=${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt"
|
||||||
"NIX_SSL_CERT_FILE=${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt"
|
"NIX_SSL_CERT_FILE=${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt"
|
||||||
|
|
Loading…
Reference in a new issue