Skip to content

Commit

Permalink
Merge pull request #69 from cachix/test-installer-options
Browse files Browse the repository at this point in the history
test installer options
  • Loading branch information
domenkozar authored Feb 21, 2021
2 parents 0598b73 + 20d5bae commit 0bd2cdc
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
17 changes: 17 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,3 +78,20 @@ jobs:
extra_nix_config: |
experimental-features = nix-command flakes
- run: nix flake show github:NixOS/nixpkgs

installer-options:
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
install_url: https://nix-ci.cachix.org/serve/lb41az54kzk6j12p81br4bczary7m145/install
install_options: '--tarball-url-prefix https://nix-ci.cachix.org/serve'
- run: nix-build test.nix
3 changes: 2 additions & 1 deletion lib/install-nix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ installer_options=(
--nix-extra-conf-file /tmp/nix.conf
)
if [[ $INPUT_INSTALL_OPTIONS != "" ]]; then
installer_options=("${installer_options[@]}" "${INPUT_INSTALL_OPTIONS[@]}")
IFS=' ' read -r -a extra_installer_options <<< $INPUT_INSTALL_OPTIONS
installer_options=("${extra_installer_options[@]}" "${installer_options[@]}")
fi

echo "installer options: ${installer_options[@]}"
Expand Down

0 comments on commit 0bd2cdc

Please sign in to comment.