Skip to content

Commit 86fe182

Browse files
committed
testing adding darwin.Security as package to haskell example
1 parent 29f5b32 commit 86fe182

File tree

2 files changed

+27
-21
lines changed

2 files changed

+27
-21
lines changed

.github/workflows/cli-tests.yaml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -172,19 +172,19 @@ jobs:
172172
uses: jetify-com/[email protected]
173173
with:
174174
enable-cache: true
175-
- name: Run fast tests
176-
if: matrix.run-project-tests == 'project-tests-off'
177-
run: |
178-
echo "::group::Nix version"
179-
nix --version
180-
echo "::endgroup::"
181-
echo "::group::Contents of /etc/nix/nix.conf"
182-
cat /etc/nix/nix.conf || true
183-
echo "::endgroup::"
184-
echo "::group::Resolved Nix config"
185-
nix show-config --extra-experimental-features nix-command
186-
echo "::endgroup::"
187-
devbox run go test -v -timeout $DEVBOX_GOLANG_TEST_TIMEOUT ./...
175+
# - name: Run fast tests
176+
# if: matrix.run-project-tests == 'project-tests-off'
177+
# run: |
178+
# echo "::group::Nix version"
179+
# nix --version
180+
# echo "::endgroup::"
181+
# echo "::group::Contents of /etc/nix/nix.conf"
182+
# cat /etc/nix/nix.conf || true
183+
# echo "::endgroup::"
184+
# echo "::group::Resolved Nix config"
185+
# nix show-config --extra-experimental-features nix-command
186+
# echo "::endgroup::"
187+
# devbox run go test -v -timeout $DEVBOX_GOLANG_TEST_TIMEOUT ./...
188188
- name: Run project (slow) tests
189189
if: matrix.run-project-tests == 'project-tests-only'
190190
run: devbox run test-projects-only

examples/development/haskell/devbox.json

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
{
2-
"packages": [
3-
"ghc@latest",
4-
"gmp@latest",
5-
"stack@latest",
6-
"cabal-install@latest",
7-
"zlib@latest",
8-
"hpack@latest"
9-
],
2+
"packages": {
3+
"ghc": "latest",
4+
"gmp": "latest",
5+
"stack": "latest",
6+
"cabal-install": "latest",
7+
"zlib": "latest",
8+
"hpack": "latest",
9+
"darwin.Security": {
10+
"version": "latest",
11+
"platforms": [
12+
"aarch64-linux"
13+
]
14+
}
15+
},
1016
"env": {
1117
"PATH": "/usr/bin/security:$PATH"
1218
},

0 commit comments

Comments
 (0)