Skip to content

Commit

Permalink
Add unzip step for libv8 in CI workflows; comment out Codecov token u…
Browse files Browse the repository at this point in the history
…sage
  • Loading branch information
trheyi committed Dec 10, 2024
1 parent 5012437 commit 0f467e2
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 4 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/pr-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,16 @@ jobs:
lfs: true
path: v8go

- name: Unzip libv8
run: |
files=$(find ./v8go -name "libv8*.zip")
for file in $files; do
dir=$(dirname "$file") # Get the directory where the ZIP file is located
echo "Extracting $file to directory $dir"
unzip -o -d $dir $file
rm -rf $dir/__MACOSX
done
- name: Checkout Demo WMS
uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -225,8 +235,8 @@ jobs:
- name: Codecov Report
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
# with:
# token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos

- name: "Comment on PR"
uses: actions/github-script@v6
Expand Down
14 changes: 12 additions & 2 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,16 @@ jobs:
lfs: true
path: v8go

- name: Unzip libv8
run: |
files=$(find ./v8go -name "libv8*.zip")
for file in $files; do
dir=$(dirname "$file") # Get the directory where the ZIP file is located
echo "Extracting $file to directory $dir"
unzip -o -d $dir $file
rm -rf $dir/__MACOSX
done
- name: Checkout Demo WMS
uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -171,5 +181,5 @@ jobs:
- name: Codecov Report
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
# with:
# token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos

0 comments on commit 0f467e2

Please sign in to comment.