2019-10-02 14:06:28 +00:00
|
|
|
name: "install-nix-action test"
|
2019-09-29 19:52:02 +00:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
2020-09-21 14:41:22 +00:00
|
|
|
branches:
|
|
|
|
- master
|
2020-05-28 14:25:05 +00:00
|
|
|
|
2024-05-15 09:28:22 +00:00
|
|
|
env:
|
|
|
|
nixpkgs_channel: nixpkgs=channel:nixos-23.11
|
2024-05-15 10:54:08 +00:00
|
|
|
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
|
2024-05-15 09:28:22 +00:00
|
|
|
|
2019-09-29 19:52:02 +00:00
|
|
|
jobs:
|
2020-05-27 11:17:01 +00:00
|
|
|
simple-build:
|
2019-09-29 19:52:02 +00:00
|
|
|
strategy:
|
2024-05-15 09:23:14 +00:00
|
|
|
fail-fast: false
|
2019-09-29 19:52:02 +00:00
|
|
|
matrix:
|
2024-05-15 09:23:14 +00:00
|
|
|
os:
|
2023-03-09 19:30:04 +00:00
|
|
|
- ubuntu-latest
|
|
|
|
- macos-latest
|
|
|
|
- macos-13
|
2019-09-29 19:52:02 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
2023-03-09 19:30:04 +00:00
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install Nix
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
nix_path: ${{ env.nixpkgs_channel }}
|
|
|
|
- run: nix-env -iA cachix -f https://cachix.org/api/v1/install
|
|
|
|
- run: cat /etc/nix/nix.conf
|
|
|
|
# cachix should be available and be able to configure a cache
|
|
|
|
- run: cachix use cachix
|
|
|
|
- run: nix-build test.nix
|
2024-05-15 09:23:14 +00:00
|
|
|
|
2020-05-28 14:25:05 +00:00
|
|
|
custom-nix-path:
|
|
|
|
strategy:
|
2024-05-15 09:23:14 +00:00
|
|
|
fail-fast: false
|
2020-05-28 14:25:05 +00:00
|
|
|
matrix:
|
2024-05-15 09:23:14 +00:00
|
|
|
os:
|
2023-03-09 19:30:04 +00:00
|
|
|
- ubuntu-latest
|
|
|
|
- macos-latest
|
|
|
|
- macos-13
|
2020-05-28 14:25:05 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
2023-03-09 19:30:04 +00:00
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install Nix
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
nix_path: ${{ env.nixpkgs_channel }}
|
|
|
|
- run: test $NIX_PATH == '${{ env.nixpkgs_channel }}'
|
|
|
|
- run: nix-build test.nix
|
2020-08-25 16:13:35 +00:00
|
|
|
|
|
|
|
extra-nix-config:
|
|
|
|
strategy:
|
2024-05-15 09:23:14 +00:00
|
|
|
fail-fast: false
|
2020-08-25 16:13:35 +00:00
|
|
|
matrix:
|
2024-05-15 09:23:14 +00:00
|
|
|
os:
|
2023-03-09 19:30:04 +00:00
|
|
|
- ubuntu-latest
|
|
|
|
- macos-latest
|
|
|
|
- macos-13
|
2020-08-25 16:13:35 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
2023-03-09 19:30:04 +00:00
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install Nix
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
nix_path: ${{ env.nixpkgs_channel }}
|
|
|
|
extra_nix_config: |
|
|
|
|
sandbox = relaxed
|
|
|
|
- run: cat /etc/nix/nix.conf
|
|
|
|
- run: nix-build test.nix --arg noChroot true
|
2020-11-04 11:19:16 +00:00
|
|
|
|
|
|
|
flakes:
|
|
|
|
strategy:
|
2024-05-15 09:23:14 +00:00
|
|
|
fail-fast: false
|
2020-11-04 11:19:16 +00:00
|
|
|
matrix:
|
2024-05-15 09:23:14 +00:00
|
|
|
os:
|
2023-03-09 19:30:04 +00:00
|
|
|
- ubuntu-latest
|
|
|
|
- macos-latest
|
|
|
|
- macos-13
|
2020-11-04 11:19:16 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
2023-03-09 19:30:04 +00:00
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install Nix
|
|
|
|
uses: ./
|
|
|
|
- run: nix flake show github:NixOS/nixpkgs
|
2021-02-21 14:00:04 +00:00
|
|
|
|
|
|
|
installer-options:
|
|
|
|
strategy:
|
2024-05-15 09:23:14 +00:00
|
|
|
fail-fast: false
|
2021-02-21 14:00:04 +00:00
|
|
|
matrix:
|
2024-05-15 09:23:14 +00:00
|
|
|
os:
|
2023-03-09 19:30:04 +00:00
|
|
|
- ubuntu-latest
|
|
|
|
# - macos-latest missing installer for aarch64-darwin
|
|
|
|
- macos-13
|
2021-02-21 14:00:04 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
2023-03-09 19:30:04 +00:00
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install Nix
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
nix_path: ${{ env.nixpkgs_channel }}
|
|
|
|
install_options: --tarball-url-prefix https://nixos-nix-install-tests.cachix.org/serve
|
|
|
|
install_url: https://nixos-nix-install-tests.cachix.org/serve/${{ env.pinned_installer_hash }}/install
|
|
|
|
- run: nix-build test.nix
|
2021-11-05 21:28:02 +00:00
|
|
|
|
|
|
|
oldest-supported-installer:
|
|
|
|
strategy:
|
2024-05-15 09:23:14 +00:00
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
os:
|
2023-03-09 19:30:04 +00:00
|
|
|
- ubuntu-latest
|
|
|
|
- macos-latest
|
|
|
|
- macos-13
|
2021-11-05 21:28:02 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
2023-03-09 19:30:04 +00:00
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install Nix
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
nix_path: ${{ env.nixpkgs_channel }}
|
|
|
|
install_url: https://releases.nixos.org/nix/${{ env.oldest_supported_installer }}/install
|
|
|
|
- run: nix-build test.nix
|
2021-11-15 14:09:45 +00:00
|
|
|
|
2022-03-30 15:17:54 +00:00
|
|
|
act-support:
|
2021-11-15 14:09:45 +00:00
|
|
|
strategy:
|
2024-05-15 09:23:14 +00:00
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest]
|
2021-11-15 14:09:45 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
2023-03-09 19:30:04 +00:00
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- run: curl https://raw.githubusercontent.com/nektos/act/master/install.sh | sudo bash
|
|
|
|
- run: docker pull ghcr.io/catthehacker/ubuntu:js-20.04
|
|
|
|
- run: ./bin/act -P ubuntu-latest=ghcr.io/catthehacker/ubuntu:js-20.04 push -j simple-build
|