Skip to content

Commit a49fd2b

Browse files
committed
DEBUG
1 parent 6628180 commit a49fd2b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,13 +173,16 @@ jobs:
173173
- name: Set binaryen's path (windows)
174174
if: matrix.os == 'windows-latest'
175175
shell: bash
176-
run: cp $GITHUB_WORKSPACE/binaryen/bin/wasm-{merge,opt}.exe $(opam var bin)
176+
run: |
177+
set -o igncr
178+
cp $GITHUB_WORKSPACE/binaryen/bin/wasm-{merge,opt}.exe $(opam var bin)
177179
178180
- name: Binaryen DEBUG
179181
shell: bash
180182
run: echo $PATH
181183

182184
- name: Binaryen DEBUG
185+
if: matrix.os == 'windows-latest'
183186
shell: bash
184187
run: ls -l /cygdrive/d/a/wasm_of_ocaml/wasm_of_ocaml/binaryen/bin
185188

@@ -197,6 +200,8 @@ jobs:
197200
- run: cat VERSION | xargs opam pin . -n --with-version
198201
if: ${{ !matrix.skip-test }}
199202
shell: bash
203+
run: |
204+
200205
201206
- run: opam install conf-c++
202207
# Otherwise, the next step fails reinstalling gcc while compiling

0 commit comments

Comments
 (0)