Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,14 @@ jobs:
with:
java-version: ${{ matrix.java-version }}
distribution: 'temurin'
- name: Install bazel
run: ./ci/run_ci.sh install_bazel
- name: Install python
run: ./ci/run_ci.sh install_python
- name: Install pyfury
run: ./ci/run_ci.sh install_pyfury
# - name: Install bazel
# run: ./ci/run_ci.sh install_bazel
# - name: Install python
# run: ./ci/run_ci.sh install_python
# - name: Install pyfury
# run: ./ci/run_ci.sh install_pyfury
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
- name: Run CI with Maven
run: PATH="$HOME/miniconda/bin:$PATH" ./ci/run_ci.sh java${{ matrix.java-version }}
integration_tests:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ public void testDeserializeUnexistedNewFury(
// ubuntu22 and jdk11/17. It's a jvm bug, see:
// https://github.com/alipay/fury/pull/923#issuecomment-1745035339
// Workaround by disable cache.
Struct.createNumberStructClass("TestSkipUnexistedClass2", 2, false),
Struct.createStructClass("TestSkipUnexistedClass2", 2, false)
Struct.createNumberStructClass("TestSkipUnexistedClass2", 2, true),
Struct.createStructClass("TestSkipUnexistedClass2", 2, true)
}) {
Object pojo = Struct.createPOJO(structClass);
MetaContext context1 = new MetaContext();
Expand Down