mirror of
https://github.com/cachix/install-nix-action.git
synced 2025-01-08 23:29:48 +00:00
ci: fix latest installer tests
This commit is contained in:
parent
08dcb3a5e6
commit
f3f544c44b
1 changed files with 15 additions and 10 deletions
25
.github/workflows/test.yml
vendored
25
.github/workflows/test.yml
vendored
|
@ -8,9 +8,6 @@ on:
|
||||||
env:
|
env:
|
||||||
nixpkgs_channel: nixpkgs=channel:nixos-24.05
|
nixpkgs_channel: nixpkgs=channel:nixos-24.05
|
||||||
oldest_supported_installer: nix-2.8.0
|
oldest_supported_installer: nix-2.8.0
|
||||||
# Fetch new versions from the Nix CI run: https://github.com/NixOS/nix/blob/master/.github/workflows/ci.yml
|
|
||||||
# TODO: add pinning upstream or rethink this
|
|
||||||
pinned_installer_hash: zfzfrbb59jsqrfkldwj8drcr9nhhc49k
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
simple-build:
|
simple-build:
|
||||||
|
@ -87,23 +84,31 @@ jobs:
|
||||||
uses: ./
|
uses: ./
|
||||||
- run: nix flake show github:NixOS/nixpkgs
|
- run: nix flake show github:NixOS/nixpkgs
|
||||||
|
|
||||||
installer-options:
|
latest-installer:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os:
|
include:
|
||||||
- ubuntu-latest
|
- os: ubuntu-latest
|
||||||
# - macos-latest missing installer for aarch64-darwin
|
system: x86_64-linux
|
||||||
- macos-13
|
- os: macos-latest
|
||||||
|
system: aarch64-darwin
|
||||||
|
- os: macos-13
|
||||||
|
system: x86_64-darwin
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
- name: Run NAR server
|
||||||
|
run: |
|
||||||
|
curl --location https://github.com/cachix/nar-toolbox/releases/download/v0.1.0/nar-toolbox-${{ matrix.system }} -O
|
||||||
|
chmod +x ./nar-toolbox-${{ matrix.system }}
|
||||||
|
./nar-toolbox-${{ matrix.system }} serve https://cache.nixos.org &
|
||||||
- name: Install Nix
|
- name: Install Nix
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
nix_path: ${{ env.nixpkgs_channel }}
|
nix_path: ${{ env.nixpkgs_channel }}
|
||||||
install_options: --tarball-url-prefix https://nixos-nix-install-tests.cachix.org/serve
|
install_url: https://hydra.nixos.org/job/nix/master/installerScript/latest-finished/download/1/install
|
||||||
install_url: https://nixos-nix-install-tests.cachix.org/serve/${{ env.pinned_installer_hash }}/install
|
install_options: "--tarball-url-prefix http://localhost:8080"
|
||||||
- run: nix-build test.nix
|
- run: nix-build test.nix
|
||||||
|
|
||||||
oldest-supported-installer:
|
oldest-supported-installer:
|
||||||
|
|
Loading…
Reference in a new issue