File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 57
57
skipPush : true
58
58
- if : ${{ needs.pre_job.outputs.should_skip_develop != 'true' }}
59
59
run : |
60
- nix develop --command cabal update
61
- nix develop --command cabal build
60
+ nix develop --print-build-logs -- command cabal update
61
+ nix develop --print-build-logs -- command cabal build
62
62
63
63
# Build and then push HLS binaries with developmet shell to cachix
64
64
# This job runs when
@@ -91,16 +91,16 @@ jobs:
91
91
name : haskell-language-server
92
92
authToken : ${{ secrets.HLS_CACHIX_AUTH_TOKEN }}
93
93
- name : Build development shell
94
- run : nix develop --profile dev
94
+ run : nix develop --print-build-logs -- profile dev
95
95
- name : Build development shell (GHC 9.0.1)
96
- run : nix develop .#haskell-language-server-901-dev --profile dev
96
+ run : nix develop --print-build-logs .#haskell-language-server-901-dev --profile dev
97
97
- name : Push development shell
98
98
if : ${{ env.HAS_TOKEN == 'true' }}
99
99
run : cachix push haskell-language-server dev
100
100
- name : Build binaries
101
- run : nix build
101
+ run : nix build --print-build-logs
102
102
- name : Build binaries (GHC 9.0.1)
103
- run : nix build .#haskell-language-server-901
103
+ run : nix build --print-build-logs .#haskell-language-server-901
104
104
- name : Push binaries
105
105
if : ${{ env.HAS_TOKEN == 'true' }}
106
106
run : nix path-info --json | jq -r '.[].path' | cachix push haskell-language-server
You can’t perform that action at this time.
0 commit comments