1
0
Fork 0

Merge pull request #47 from toonn/build-action-updates

Build action updates
main
Jörg Thalheim 2021-07-21 07:47:03 +01:00 committed by GitHub
commit cc8c7823f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 2 deletions

View File

@ -24,8 +24,10 @@ jobs:
# Format: Your cachix cache host name without the ".cachix.org" suffix. # Format: Your cachix cache host name without the ".cachix.org" suffix.
# Example: mycache (for mycache.cachix.org) # Example: mycache (for mycache.cachix.org)
# #
# For this to work, you also need to set the CACHIX_SIGNING_KEY secret # For this to work, you also need to set the CACHIX_SIGNING_KEY or
# in your repository settings in Github found at https://github.com/<your_githubname>/nur-packages/settings/secrets # CACHIX_AUTH_TOKEN secret in your repository secrets settings in
# Github found at
# https://github.com/<your_githubname>/nur-packages/settings/secrets
cachixName: cachixName:
- <YOUR_CACHIX_NAME> - <YOUR_CACHIX_NAME>
nixPath: nixPath:
@ -44,10 +46,12 @@ jobs:
run: nix-instantiate --eval -E '(import <nixpkgs> {}).lib.version' run: nix-instantiate --eval -E '(import <nixpkgs> {}).lib.version'
- name: Setup cachix - name: Setup cachix
uses: cachix/cachix-action@v10 uses: cachix/cachix-action@v10
# Don't replace <YOUR_CACHIX_NAME> here!
if: ${{ matrix.cachixName != '<YOUR_CACHIX_NAME>' }} if: ${{ matrix.cachixName != '<YOUR_CACHIX_NAME>' }}
with: with:
name: ${{ matrix.cachixName }} name: ${{ matrix.cachixName }}
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}' signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: Check evaluation - name: Check evaluation
run: | run: |
nix-env -f . -qa \* --meta --xml \ nix-env -f . -qa \* --meta --xml \
@ -61,5 +65,6 @@ jobs:
# TODO switch to default nixpkgs channel once nix-build-uncached 1.0.0 is in stable # TODO switch to default nixpkgs channel once nix-build-uncached 1.0.0 is in stable
run: nix run -I 'nixpkgs=channel:nixos-unstable' nixpkgs.nix-build-uncached -c nix-build-uncached ci.nix -A cacheOutputs run: nix run -I 'nixpkgs=channel:nixos-unstable' nixpkgs.nix-build-uncached -c nix-build-uncached ci.nix -A cacheOutputs
- name: Trigger NUR update - name: Trigger NUR update
# Don't replace <YOUR_REPO_NAME> here!
if: ${{ matrix.nurRepo != '<YOUR_REPO_NAME>' }} if: ${{ matrix.nurRepo != '<YOUR_REPO_NAME>' }}
run: curl -XPOST "https://nur-update.herokuapp.com/update?repo=${{ matrix.nurRepo }}" run: curl -XPOST "https://nur-update.herokuapp.com/update?repo=${{ matrix.nurRepo }}"