Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: DeterminateSystems/nix-installer-action
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v9
Choose a base ref
...
head repository: DeterminateSystems/nix-installer-action
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v10
Choose a head ref
  • 11 commits
  • 5 files changed
  • 3 contributors

Commits on Dec 19, 2023

  1. action: post-run-job: try clean daemon container, warn on failure (#61)

    * flake: add typescript LSP tool
    
    * action: post-run-job: try clean daemon container, warn on failure
    colemickens authored Dec 19, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    21affdd View commit details

Commits on Jan 8, 2024

  1. No longer require sudo

    Hoverbear committed Jan 8, 2024
    Copy the full SHA
    0e5b724 View commit details
  2. Use uid not username

    Hoverbear committed Jan 8, 2024
    Copy the full SHA
    161c1f6 View commit details
  3. Fix logic inversion

    Hoverbear committed Jan 8, 2024
    Copy the full SHA
    f576e90 View commit details

Commits on Jan 9, 2024

  1. Merge pull request #64 from DeterminateSystems/hoverbear/fh-156-insta…

    …ller-action-shouldnt-require-sudo
    
    No longer require sudo
    Hoverbear authored Jan 9, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    0f8fa3d View commit details
  2. Handle docker not existing

    Hoverbear committed Jan 9, 2024
    Copy the full SHA
    81ee88f View commit details
  3. Merge branch 'main' into hoverbear/fh-160-action-should-work-under-ne…

    …ktosact-in-the-absence-of-systemd
    Hoverbear committed Jan 9, 2024
    Copy the full SHA
    4126bb8 View commit details

Commits on Jan 10, 2024

  1. Merge pull request #66 from DeterminateSystems/hoverbear/fh-160-actio…

    …n-should-work-under-nektosact-in-the-absence-of-systemd
    
    Handle docker not existing.
    Hoverbear authored Jan 10, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    ffea801 View commit details
  2. Copy the full SHA
    f4a0ffe View commit details

Commits on Jan 11, 2024

  1. Merge pull request #67 from DeterminateSystems/hoverbear/fh-161-after…

    …-running-in-act-hosts-nix-daemon-is-unusable
    
    Don't use docker shim if only using a mounted docker.sock instead of docker-in-docker
    Hoverbear authored Jan 11, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    e279ba5 View commit details

Commits on Mar 11, 2024

  1. DETERMINATE_NIX_KVM fixup, support Magic Nix Cache + FlakeHub Cache o…

    …n Namespace runners (#72)
    
    * Share /bin with nix for post-build-hooks
    
    * test the magic nix cache
    
    * wtf
    
    * permissions
    
    * Share /home and the network namespace too
    
    * test the devshell
    
    * Don't force-set kvm to 0 ... d'oh!
    
    * dev shell support for aarch64-linux
    
    * ?
    
    * More testing /  debug
    
    * Make it run anyway
    
    * Bind /lib too so /bin/sh works ... sigh
    
    * Disable gha-cache for tesing
    
    * Kill the magic nix cache before reinstalling
    
    * Don't set the extra environment variables extraniously
    
    * Enable gha cache again
    grahamc authored Mar 11, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    de22e16 View commit details
Showing with 370 additions and 59 deletions.
  1. +24 −5 .github/workflows/ci.yml
  2. +157 −25 dist/index.js
  3. +1 −1 dist/index.js.map
  4. +2 −1 flake.nix
  5. +186 −27 src/main.ts
29 changes: 24 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -16,15 +16,18 @@ jobs:
- run: npm run all
- run: git status --porcelain=v1
- run: test $(git status --porcelain=v1 2>/dev/null | wc -l) -eq 0
run-x86_64-linux:
name: Run x86_64 Linux
run-test-suite:
name: Run test suite
strategy:
matrix:
runner:
- ubuntu-latest
- nscloud-ubuntu-22.04-amd64-4x16
- namespace-profile-default-arm64
- ubuntu-latest
- nscloud-ubuntu-22.04-amd64-4x16
- namespace-profile-default-arm64
runs-on: ${{ matrix.runner }}
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v3
- name: Install Nix
@@ -33,8 +36,15 @@ jobs:
logger: pretty
log-directives: nix_installer=trace
backtrace: full
- uses: DeterminateSystems/magic-nix-cache-action@main
- name: echo $PATH
run: echo $PATH

- name: Render the devshell
if: success() || failure()
run: |
nix develop --command date
- name: Test `nix` with `$GITHUB_PATH`
if: success() || failure()
run: |
@@ -43,6 +53,7 @@ jobs:
hello
nix store gc
nix run nixpkgs#hello
- name: Test bash
run: nix-instantiate -E 'builtins.currentTime' --eval
if: success() || failure()
@@ -91,6 +102,9 @@ jobs:
run-x86_64-darwin:
name: Run x86_64 Darwin
runs-on: macos-12
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v3
- name: Install Nix
@@ -99,6 +113,7 @@ jobs:
logger: pretty
log-directives: nix_installer=trace
backtrace: full
- uses: DeterminateSystems/magic-nix-cache-action@main
- name: echo $PATH
run: echo $PATH
- name: Test `nix` with `$GITHUB_PATH`
@@ -135,6 +150,10 @@ jobs:
hello
nix store gc
nix run nixpkgs#hello
- name: Terminate the magic nix cache pre-reinstall
if: success() || failure()
run: |
pkill magic-nix-cache
- name: Reinstall Nix
uses: ./
with:
182 changes: 157 additions & 25 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@

outputs = { self, flake-schemas, nixpkgs }:
let
supportedSystems = [ "x86_64-linux" "aarch64-darwin" ];
supportedSystems = [ "x86_64-linux" "aarch64-darwin" "aarch64-linux" "x86_64-darwin" ];
forEachSupportedSystem = f: nixpkgs.lib.genAttrs supportedSystems (system: f {
pkgs = import nixpkgs { inherit system; };
});
@@ -22,6 +22,7 @@
packages = with pkgs; [
nodejs_latest
nixpkgs-fmt
nodePackages_latest.typescript-language-server
];
};
});
Loading