chore(ci): remove msrv check (#1923)

This commit is contained in:
Aram Drevekenin 2022-11-09 23:03:11 +01:00 committed by GitHub
parent 49b831c032
commit d68db715d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,23 +26,3 @@ jobs:
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- run: | - run: |
nix build || nix build --substituters 'https://cache.nixos.org' --extra-substituters '' nix build || nix build --substituters 'https://cache.nixos.org' --extra-substituters ''
build-msrv:
runs-on: ubuntu-latest
name: "build msrv"
timeout-minutes: 35
steps:
- uses: actions/checkout@v3
with:
# Nix Flakes doesn't work on shallow clones
fetch-depth: 0
- uses: cachix/install-nix-action@v18
- uses: cachix/cachix-action@v12
with:
name: zellij
# If you chose API tokens for write access OR if you have a private cache
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- run: |
nix build .#zellij-msrv || nix build .#zellij-msrv --substituters 'https://cache.nixos.org' --extra-substituters ''
- if: ${{ failure() }}
run: |
echo "::error :: If this is the only ci step failing, it is likely that the MSRV needs to be bumped."