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