forked from lix-project/lix
732dd90428
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.5 to 2.4.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2.3.5...v2.4.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
77 lines
2.6 KiB
YAML
77 lines
2.6 KiB
YAML
name: "Test"
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
|
|
jobs:
|
|
|
|
tests:
|
|
needs: [check_cachix]
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
timeout-minutes: 60
|
|
steps:
|
|
- uses: actions/checkout@v2.4.0
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: cachix/install-nix-action@v14.1
|
|
- run: echo CACHIX_NAME="$(echo $GITHUB_REPOSITORY-install-tests | tr "[A-Z]/" "[a-z]-")" >> $GITHUB_ENV
|
|
- uses: cachix/cachix-action@v10
|
|
if: needs.check_cachix.outputs.secret == 'true'
|
|
with:
|
|
name: '${{ env.CACHIX_NAME }}'
|
|
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
|
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
|
- run: nix-build -A checks.$(nix-instantiate --eval -E '(builtins.currentSystem)')
|
|
|
|
check_cachix:
|
|
name: Cachix secret present for installer tests
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
secret: ${{ steps.secret.outputs.secret }}
|
|
steps:
|
|
- name: Check for Cachix secret
|
|
id: secret
|
|
env:
|
|
_CACHIX_SECRETS: ${{ secrets.CACHIX_SIGNING_KEY }}${{ secrets.CACHIX_AUTH_TOKEN }}
|
|
run: echo "::set-output name=secret::${{ env._CACHIX_SECRETS != '' }}"
|
|
|
|
installer:
|
|
needs: [tests, check_cachix]
|
|
if: github.event_name == 'push' && needs.check_cachix.outputs.secret == 'true'
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
installerURL: ${{ steps.prepare-installer.outputs.installerURL }}
|
|
steps:
|
|
- uses: actions/checkout@v2.4.0
|
|
with:
|
|
fetch-depth: 0
|
|
- run: echo CACHIX_NAME="$(echo $GITHUB_REPOSITORY-install-tests | tr "[A-Z]/" "[a-z]-")" >> $GITHUB_ENV
|
|
- uses: cachix/install-nix-action@v14.1
|
|
- uses: cachix/cachix-action@v10
|
|
with:
|
|
name: '${{ env.CACHIX_NAME }}'
|
|
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
|
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
|
- id: prepare-installer
|
|
run: scripts/prepare-installer-for-github-actions
|
|
|
|
installer_test:
|
|
needs: [installer, check_cachix]
|
|
if: github.event_name == 'push' && needs.check_cachix.outputs.secret == 'true'
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v2.4.0
|
|
- run: echo CACHIX_NAME="$(echo $GITHUB_REPOSITORY-install-tests | tr "[A-Z]/" "[a-z]-")" >> $GITHUB_ENV
|
|
- uses: cachix/install-nix-action@v14.1
|
|
with:
|
|
install_url: '${{needs.installer.outputs.installerURL}}'
|
|
install_options: "--tarball-url-prefix https://${{ env.CACHIX_NAME }}.cachix.org/serve"
|
|
- run: nix-instantiate -E 'builtins.currentTime' --eval
|