aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorCyril Cohen2021-04-01 15:34:04 +0200
committerGitHub2021-04-01 15:34:04 +0200
commitf4fb83f19cbe9503f7cfe03ba8217311744e33ac (patch)
tree77c761728f90cdb6d1631ed2cc1bf2939b4690a8 /.github/workflows
parent96d392fd70f91d2a5e71cb3d07dddb0c603280a7 (diff)
parent262770d66a3bc6e3d90e2df656cf9a9130513467 (diff)
Merge pull request #735 from math-comp/nixHEADmaster
Nix
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/nix-action.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/nix-action.yml b/.github/workflows/nix-action.yml
index a9ff81a..5457181 100644
--- a/.github/workflows/nix-action.yml
+++ b/.github/workflows/nix-action.yml
@@ -36,8 +36,8 @@ jobs:
- name: Setup build matrix
id: set-matrix
run: |
- matrix=$(nix-shell --arg do-nothing true --run nixTasks)
- echo ::set-output name=matrix::{\"task\":$(echo $matrix)}\"
+ matrix=$(nix-shell --arg do-nothing true --run nixBundles)
+ echo ::set-output name=matrix::{\"bundle\":$(echo $matrix)}\"
mathcomp:
runs-on: ubuntu-latest
@@ -67,9 +67,9 @@ jobs:
with:
fetch-depth: 0
- name: Building/fetching dependencies
- run: nix-build --no-out-link --argstr ci "${{ matrix.task }}" --argstr ci-job "_deps"
+ run: nix-build --no-out-link --argstr ci "${{ matrix.bundle }}" --argstr ci-job "_deps"
- name: Building/fetching current project
- run: nix-build --no-out-link --argstr ci "${{ matrix.task }}" --argstr ci-job mathcomp
+ run: nix-build --no-out-link --argstr ci "${{ matrix.bundle }}" --argstr ci-job mathcomp
mathcomp-single:
runs-on: ubuntu-latest
@@ -99,7 +99,7 @@ jobs:
with:
fetch-depth: 0
- name: Building/fetching dependencies
- run: nix-build --no-out-link --argstr ci "${{ matrix.task }}" --argstr ci-job _deps
+ run: nix-build --no-out-link --argstr ci "${{ matrix.bundle }}" --argstr ci-job _deps
- name: Building/fetching current project
- run: nix-build --no-out-link --argstr ci "${{ matrix.task }}" --argstr ci-job mathcomp-single
+ run: nix-build --no-out-link --argstr ci "${{ matrix.bundle }}" --argstr ci-job mathcomp-single