install-nix-action/.github/workflows/test.yml

36 lines
1 KiB
YAML
Raw Permalink Normal View History

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:
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:
2020-05-12 10:42:14 +00:00
- uses: actions/checkout@v2
2019-09-29 19:52:02 +00:00
- run: yarn install --frozen-lockfile
- run: yarn build
- name: Install Nix
uses: ./
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-27 11:17:01 +00:00
no-channel:
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:
skip_adding_nixpkgs_channel: true
- run: nix-build test.nix && exit 1 || echo "OK"
- run: NIX_PATH=nixpkgs=https://github.com/NixOS/nixpkgs/tarball/ab5863afada3c1b50fc43bf774b75ea71b287cde nix-build test.nix