summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorAram Drevekenin <aram@poor.dev>2022-11-09 23:03:11 +0100
committerGitHub <noreply@github.com>2022-11-09 23:03:11 +0100
commitd68db715d10c8b5c5abb0f23c1926d596586ca18 (patch)
tree810a51a254ea34a1b0f713fe208fc5e931db52f0 /.github
parent49b831c032aa4d7f770847ba0c03050a09c80fe1 (diff)
chore(ci): remove msrv check (#1923)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/nix.yml20
1 files changed, 0 insertions, 20 deletions
diff --git a/.github/workflows/nix.yml b/.github/workflows/nix.yml
index c44890153..e4318ba55 100644
--- a/.github/workflows/nix.yml
+++ b/.github/workflows/nix.yml
@@ -26,23 +26,3 @@ jobs:
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- run: |
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."