Skip to content

Commit

Permalink
Update devx.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
angerman committed May 9, 2024
1 parent 85cbbdd commit f923c9d
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/devx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,17 @@ jobs:
- name: add patched cabal
run: |
mkdir ~/bin
curl -L https://ci.zw3rk.com/job/input-output-hk-haskell-nix-example/pullrequest-2/x86_64-linux.cabal-install-static/latest/download/1 | gunzip > ~/bin/cabal
case "$(uname -m)-$(uname -o)" in
arm64-Darwin)
curl -L https://ci.zw3rk.com/job/input-output-hk-haskell-nix-example/pullrequest-2/aarch64-darwin.cabal-install-static/latest/download/1 | gunzip > ~/bin/cabal
;;
x86_64-Darwin)
curl -L https://ci.zw3rk.com/job/input-output-hk-haskell-nix-example/pullrequest-2/x86_64-darwin.cabal-install-static/latest/download/1 | gunzip > ~/bin/cabal
;;
x86_64-GNU/Linux)
curl -L https://ci.zw3rk.com/job/input-output-hk-haskell-nix-example/pullrequest-2/x86_64-linux.cabal-install-static/latest/download/1 | gunzip > ~/bin/cabal
;;
esac
chmod +x ~/bin/cabal
- name: Cabal update
Expand Down

0 comments on commit f923c9d

Please sign in to comment.