Commit 6aedf02
authored
[cli-test] Added /usr/bin to PATH so that haskell can to verify pkg downloads (#2433)
## Summary
CICD jobs for
[`cli-test`](https://github.com/jetify-com/devbox/actions/workflows/cli-tests.yaml?query=branch%3Amain)
has been failing on Haskell example because the PATH (only) in test
environment for macos doesn't have access to `/usr/bin/security` so it
fails to verify TLS handshake on haskell package downloads.
This small change ensures haskell has access to security binary.
Broader fix would be to add `/usr/bin` to
[`setupPATH`](https://github.com/jetify-com/devbox/blob/0fdfc6764a0a16fbbff504410053b13dee075e5f/testscripts/testrunner/setupenv.go#L39)
function that sets up test environments before being run in CICD. But
this PR keeps the scope to only the failing test.
related to commercialhaskell/stack#4558
## How was it tested?
tested in this CI job:
https://github.com/jetify-com/devbox/actions/runs/121473219111 parent 28ba55e commit 6aedf02
1 file changed
+4
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
10 | 13 | | |
11 | 14 | | |
12 | 15 | | |
| |||
17 | 20 | | |
18 | 21 | | |
19 | 22 | | |
20 | | - | |
| 23 | + | |
0 commit comments