Compare commits

..

1 Commits

Author SHA1 Message Date
afb82faed7 Allow overriding installation URL 2020-05-14 13:21:40 +02:00
3 changed files with 9 additions and 3 deletions

View File

@ -9,13 +9,16 @@ jobs:
os: [ubuntu-18.04, macos-latest] os: [ubuntu-18.04, macos-latest]
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v1
- run: yarn install --frozen-lockfile - run: yarn install --frozen-lockfile
- run: yarn build - run: yarn build
# TODO: just commit it using github
- run: git diff --exit-code
- run: yarn test
- name: Install Nix - name: Install Nix
uses: ./ uses: ./
- run: nix-env -iA cachix -f https://github.com/NixOS/nixpkgs/tarball/ab5863afada3c1b50fc43bf774b75ea71b287cde - run: nix-env -iA cachix -f https://github.com/NixOS/nixpkgs/tarball/ab5863afada3c1b50fc43bf774b75ea71b287cde
- run: cat /etc/nix/nix.conf - run: cat /etc/nix/nix.conf
# cachix should be available and be able to configure a cache # cachix should be available and be able to configure a cache
- run: cachix use cachix - run: cachix use cachix
- run: nix-build test.nix - run: nix-build test.nix

View File

@ -1,6 +1,9 @@
name: 'Install Nix' name: 'Install Nix'
description: 'Installs Nix on GitHub Actions for the supported platforms: Linux and macOS.' description: 'Installs Nix on GitHub Actions for the supported platforms: Linux and macOS.'
author: 'Domen Kožar' author: 'Domen Kožar'
inputs:
install_url:
description: 'Installation URL that will contain a script to install Nix'
branding: branding:
color: 'blue' color: 'blue'
icon: 'sun' icon: 'sun'

View File

@ -26,7 +26,7 @@ nixConf
# Needed due to multi-user being too defensive # Needed due to multi-user being too defensive
export ALLOW_PREEXISTING_INSTALLATION=1 export ALLOW_PREEXISTING_INSTALLATION=1
sh <(curl -L https://nixos.org/nix/install) --daemon sh <(curl -L ${INPUT_INSTALL_URL:-https://nixos.org/nix/install}) --daemon
# write nix.conf again as installation overwrites it # write nix.conf again as installation overwrites it
nixConf nixConf