summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorseth <[email protected]>2024-04-19 22:57:55 -0400
committerseth <[email protected]>2024-04-19 22:57:55 -0400
commit631f42d69e2705ba3add14ce048d289c6a3d4bac (patch)
tree176a59439d3486e72922a382e3d25b2f210e38d0 /.github/workflows
parentb382d2e817a0979cb1817c54d6404309bc6bd0b6 (diff)
ci: don't build regular nix package
we already build it on each platform through good old cargo, and test an actual nix build for the docker image. we should be fine with just a check here
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/nix.yaml33
1 files changed, 0 insertions, 33 deletions
diff --git a/.github/workflows/nix.yaml b/.github/workflows/nix.yaml
index 4427afa..ab0987c 100644
--- a/.github/workflows/nix.yaml
+++ b/.github/workflows/nix.yaml
@@ -7,29 +7,6 @@ on:
workflow_dispatch:
jobs:
- build:
- name: Build
-
- strategy:
- fail-fast: false
- matrix:
- os: [ubuntu-latest, macos-latest]
-
- runs-on: ${{ matrix.os }}
-
- steps:
- - name: Checkout repository
- uses: actions/checkout@v4
-
- - name: Install Nix
- uses: DeterminateSystems/nix-installer-action@v10
-
- - name: Setup Nix cache
- uses: DeterminateSystems/magic-nix-cache-action@v4
-
- - name: Run build
- run: nix build --fallback --print-build-logs
-
check:
name: Check flake
@@ -52,13 +29,3 @@ jobs:
--fallback \
--print-build-logs \
--show-trace
-
- release-gate:
- name: Nix Release Gate
- needs: [build, check]
-
- runs-on: ubuntu-latest
-
- steps:
- - name: Exit with result
- run: echo "We're good to go!"