mirror of
https://github.com/cachix/install-nix-action.git
synced 2024-11-24 09:28:04 +00:00
80 lines
2.1 KiB
YAML
80 lines
2.1 KiB
YAML
name: "install-nix-action test"
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
simple-build:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: yarn install --frozen-lockfile
|
|
- run: yarn build
|
|
- name: Install Nix
|
|
uses: ./
|
|
with:
|
|
nix_path: nixpkgs=channel:nixos-20.03
|
|
- 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
|
|
|
|
custom-nix-path:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: yarn install --frozen-lockfile
|
|
- run: yarn build
|
|
- 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
|
|
|
|
extra-nix-config:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: yarn install --frozen-lockfile
|
|
- run: yarn build
|
|
- name: Install Nix
|
|
uses: ./
|
|
with:
|
|
nix_path: nixpkgs=channel:nixos-20.03
|
|
extra_nix_config: |
|
|
sandbox = relaxed
|
|
- run: cat /etc/nix/nix.conf
|
|
- run: nix-build test.nix --arg noChroot true
|
|
|
|
flakes:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
# Nix Flakes doesn't work on shallow clones
|
|
fetch-depth: 0
|
|
- run: yarn install --frozen-lockfile
|
|
- run: yarn build
|
|
- name: Install Nix
|
|
uses: ./
|
|
with:
|
|
install_url: https://github.com/numtide/nix-flakes-installer/releases/download/nix-2.4pre20201221_9fab14a/install
|
|
extra_nix_config: |
|
|
experimental-features = nix-command flakes
|
|
- run: nix flake show github:NixOS/nixpkgs
|