Merge remote-tracking branch 'origin/vcpkg-fix' #25674
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: Nixpkgs Package Build Test | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
release: | |
types: [published] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: cachix/install-nix-action@v13 | |
with: | |
install_url: https://nixos-nix-install-tests.cachix.org/serve/036617vxvs25sdpkfdia77a6w6zvrxp6/install | |
install_options: "--tarball-url-prefix https://nixos-nix-install-tests.cachix.org/serve" | |
extra_nix_config: | | |
experimental-features = nix-command flakes ca-references recursive-nix | |
- uses: cachix/cachix-action@v10 | |
with: | |
name: across | |
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" | |
- name: Nix Flake Check | |
run: nix flake check -vL --keep-going |