From d822eb44e5babfd5c9765c5688f5cede81033517 Mon Sep 17 00:00:00 2001 From: yankun <1939810907@qq.com> Date: Thu, 20 Jul 2023 22:35:47 +0800 Subject: [PATCH] ci: test cross compile --- .github/workflows/publish_snapshot.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/publish_snapshot.yml b/.github/workflows/publish_snapshot.yml index e1d22da..ad7a338 100644 --- a/.github/workflows/publish_snapshot.yml +++ b/.github/workflows/publish_snapshot.yml @@ -15,11 +15,14 @@ env: jobs: cross: strategy: + fail-fast: false matrix: # a list of all the targets include: - TARGET: x86_64-pc-windows-msvc OS: windows-latest + - TARGET: x86_64-apple-darwin + OS: macos-latest - TARGET: aarch64-apple-darwin OS: macos-latest runs-on: ${{ matrix.OS }} @@ -45,6 +48,7 @@ jobs: with: name: result path: out/fastbloomjvm/compileNative.dest/native/ + - run: ls -R out/fastbloomjvm/compileNative.dest/native/ deploy: needs: cross runs-on: ubuntu-22.04