Skip to content

Commit

Permalink
disable fast fail for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
zhicwu committed Feb 28, 2023
1 parent 339a1bc commit 1fb306f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build-java.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,14 @@ jobs:
# https://adoptium.net/supported-platforms/
jdk: 11
- os: ubuntu-latest
target: x86_64-unknown-linux-musl
target: x86_64-unknown-linux-gnu
suffix: ".so"
jdk: 8
- os: windows-latest
target: x86_64-pc-windows-msvc
suffix: ".dll"
jdk: 8
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test-java.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,12 @@ jobs:
# https://adoptium.net/supported-platforms/
jdk: 11
- os: ubuntu-latest
target: x86_64-unknown-linux-musl
target: x86_64-unknown-linux-gnu
jdk: 8
- os: windows-latest
target: x86_64-pc-windows-msvc
jdk: 8
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion prql-java/prql-api/src/main/java/org/prqllang/PrqlApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import org.prqllang.internal.Utils;

/**
* Wrapper of PRQL.
* Wrapper of prql-compiler Rust library.
*/
public interface PrqlApi {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ static final class Defaults {
} else if (osName.contains("windows")) {
LIB_PATH = (is64bit ? "x86_64" : "x86") + "-pc-windows-msvc";
} else { // linux
LIB_PATH = (is64bit ? "x86_64" : "x86") + "-unknown-linux-musl";
LIB_PATH = (is64bit ? "x86_64" : "x86") + "-unknown-linux-gnu";
}
}

Expand Down

0 comments on commit 1fb306f

Please sign in to comment.