Skip to content

Commit

Permalink
DEBUG
Browse files Browse the repository at this point in the history
  • Loading branch information
vouillon committed Dec 3, 2024
1 parent 4f6275e commit 3d8cf62
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-wasm_of_ocaml.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
id: cache-binaryen
uses: actions/cache/restore@v4
with:
path: binaryen
path: binaryen/bin
key: ${{ runner.os }}-binaryen-version_118

- name: Checkout binaryen
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
if: steps.cache-binaryen.outputs.cache-hit != 'true'
uses: actions/cache/save@v4
with:
path: binaryen
path: binaryen/bin
key: ${{ runner.os }}-binaryen-version_118

- name: Set binaryen's path
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
id: cache-binaryen
uses: actions/cache/restore@v4
with:
path: binaryen
path: binaryen/bin
key: ${{ runner.os }}-binaryen-version_118

- name: Checkout binaryen
Expand Down Expand Up @@ -163,13 +163,17 @@ jobs:
if: steps.cache-binaryen.outputs.cache-hit != 'true'
uses: actions/cache/save@v4
with:
path: binaryen
path: binaryen/bin
key: ${{ runner.os }}-binaryen-version_118

- name: Set binaryen's path
shell: bash
run: echo "$GITHUB_WORKSPACE/binaryen/bin" >> $GITHUB_PATH

- name: Set binaryen's path (windows)
shell: bash
run: cp $GITHUB_WORKSPACE/binaryen/bin/wasm-{merge,opt}.exe `opam var bin`

- name: Binaryen DEBUG
shell: bash
run: echo $PATH
Expand Down

0 comments on commit 3d8cf62

Please sign in to comment.