Skip to content

Commit

Permalink
Skip wasm and js browser test on windows for now
Browse files Browse the repository at this point in the history
  • Loading branch information
ionspin committed Jul 14, 2024
1 parent a1ba37d commit 8adda24
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/github-pull-request-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ on:
branches:
- main

env:
CHROME_BIN: "chrome"
jobs:
Build-And-Test-Linux:
runs-on: ubuntu-latest
Expand All @@ -20,7 +18,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- uses: browser-actions/setup-chrome@v1
- run: ./linuxBuild.sh
- run: CHROME_BIN=${{ steps.setup-chrome.outputs.chrome-path }} ./linuxBuild.sh
Build-And-Test-Mac:
runs-on: macos-latest
steps:
Expand Down Expand Up @@ -49,4 +47,4 @@ jobs:
id: setup-chrome
- shell: msys2 {0}
run: |
CHROME_BIN=${{ steps.setup-chrome.outputs.chrome-path }} ./windowsBuild.sh
./windowsBuild.sh
2 changes: 1 addition & 1 deletion windowsBuild.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
if [[ -n "$GITHUB_ACTION" ]]; then
echo "Running without verification"
./gradlew build --dependency-verification lenient -x spotlessKotlinCheck -x spotlessKotlinGradleCheck || exit 1
./gradlew build --dependency-verification lenient -x spotlessKotlinCheck -x spotlessKotlinGradleCheck -x jsBrowserTest -x wasmJsBrowserTest|| exit 1
else
echo "Running with verification"
./gradlew build -x spotlessKotlinCheck -x spotlessKotlinGradleCheck || exit 1
Expand Down

0 comments on commit 8adda24

Please sign in to comment.