We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc13a5f commit 9e1d945Copy full SHA for 9e1d945
.github/workflows/nix.yml
@@ -21,14 +21,29 @@ jobs:
21
with:
22
name: gepetto
23
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
24
- - run: nix build -L .#proxsuite .#proxsuite-eigen_5
+ - run: nix build -L .#proxsuite
25
+
26
+ nix-eigen5:
27
+ runs-on: "${{ matrix.os }}"
28
+ strategy:
29
+ matrix:
30
+ os: ["ubuntu-24.04", "macos-15"]
31
+ steps:
32
+ - uses: actions/checkout@v5
33
+ - uses: cachix/install-nix-action@v31
34
+ - uses: cachix/cachix-action@v16
35
+ with:
36
+ name: gepetto
37
+ authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
38
+ - run: nix build -L .#proxsuite-eigen_5
39
40
check:
41
if: always()
42
name: check-macos-linux-nix
43
44
needs:
45
- nix
46
+ - nix-eigen5
47
48
runs-on: Ubuntu-latest
49
0 commit comments