Revert "feat(chat): swapt to vesktop from discord" #82
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Nix Flake actions | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
- main | |
jobs: | |
nix-matrix: | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.set-matrix.outputs.matrix }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v26 | |
- id: set-matrix | |
name: Generate Nix Matrix | |
run: | | |
set -euo pipefail | |
matrix="$(nix eval --json '.#githubActions.matrix')" | |
echo "matrix=$matrix" >> "$GITHUB_OUTPUT" | |
echo "$matrix" | jq | |
nix-build: | |
needs: nix-matrix | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false # let it build all the targets | |
matrix: ${{fromJSON(needs.nix-matrix.outputs.matrix)}} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v26 | |
with: | |
extra_nix_config: | | |
auto-optimise-store = true | |
system-features = nixos-test benchmark big-parallel kvm | |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }} | |
experimental-features = nix-command flakes | |
- uses: DeterminateSystems/magic-nix-cache-action@main | |
- uses: cachix/cachix-action@v14 | |
with: | |
name: snowflake | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- uses: nixbuild/nixbuild-action@v19 | |
with: | |
nixbuild_token: ${{ secrets.NIXBUILD_AUTH_TOKEN }} | |
generate_summary_for: 'workflow' | |
- run: | | |
nix build \ | |
--print-build-logs \ | |
--builders "" \ | |
--max-jobs 2 \ | |
--eval-store auto \ | |
--store ssh-ng://eu.nixbuild.net \ | |
".#githubActions.checks.${{ matrix.attr }}" | |