Skip to content
This repository has been archived by the owner on Oct 28, 2023. It is now read-only.

Commit

Permalink
update params
Browse files Browse the repository at this point in the history
  • Loading branch information
Ughuuu committed Oct 24, 2023
1 parent f3d7c24 commit f91c524
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ runs:
cd src/rapier2d-wrapper && mkdir release && rustup target add aarch64-apple-darwin && \
cargo build --target=aarch64-apple-darwin --release --features=${{ inputs.features }} && \
lipo -create -output target/release/librapier2d_wrapper.a target/aarch64-apple-darwin/release/librapier2d_wrapper.a target/x86_64-apple-darwin/release/librapier2d_wrapper.a
- name: Build Physics Server Rapier - Single and Double Precision
- name: Build Physics Server Rapier
shell: sh
env:
SCONS_CACHE: .scons-cache
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/android_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ jobs:
arch: ${{ matrix.arch }}
platform: android
target: ${{ matrix.target }}
precision: ${{ matrix.precision }}
features: ${{ matrix.features }}

- name: Upload ${{ matrix.target }} ${{ matrix.arch }}
uses: ./.github/actions/upload
precision: ${{ matrix.precision }}
features: ${{ matrix.features }}
4 changes: 4 additions & 0 deletions .github/workflows/ios_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ jobs:
arch: ${{ matrix.arch }}
platform: ios
target: ${{ matrix.target }}
precision: ${{ matrix.precision }}
features: ${{ matrix.features }}

- name: Upload ${{ matrix.target }} ${{ matrix.arch }}
uses: ./.github/actions/upload
precision: ${{ matrix.precision }}
features: ${{ matrix.features }}
4 changes: 4 additions & 0 deletions .github/workflows/linux_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@ jobs:
arch: ${{ matrix.arch }}
platform: linux
target: ${{ matrix.target }}
precision: ${{ matrix.precision }}
features: ${{ matrix.features }}

- name: Upload ${{ matrix.target }} ${{ matrix.arch }}
uses: ./.github/actions/upload
precision: ${{ matrix.precision }}
features: ${{ matrix.features }}

4 changes: 4 additions & 0 deletions .github/workflows/macos_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ jobs:
platform: macos
rust_target: --target=x86_64-apple-darwin
target: ${{ matrix.target }}
precision: ${{ matrix.precision }}
features: ${{ matrix.features }}

- name: Sign frameworks
shell: pwsh
Expand All @@ -47,3 +49,5 @@ jobs:

- name: Upload ${{ matrix.target }} ${{ matrix.arch }}
uses: ./.github/actions/upload
precision: ${{ matrix.precision }}
features: ${{ matrix.features }}
4 changes: 4 additions & 0 deletions .github/workflows/web_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,11 @@ jobs:
arch: ${{ matrix.arch }}
platform: javascript
target: ${{ matrix.target }}
precision: ${{ matrix.precision }}
features: ${{ matrix.features }}

- name: Upload ${{ matrix.target }} ${{ matrix.arch }}
uses: ./.github/actions/upload
precision: ${{ matrix.precision }}
features: ${{ matrix.features }}

4 changes: 4 additions & 0 deletions .github/workflows/windows_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ jobs:
arch: ${{ matrix.arch }}
platform: windows
target: ${{ matrix.target }}
precision: ${{ matrix.precision }}
features: ${{ matrix.features }}

- name: Upload ${{ matrix.target }} ${{ matrix.arch }}
uses: ./.github/actions/upload
precision: ${{ matrix.precision }}
features: ${{ matrix.features }}

0 comments on commit f91c524

Please sign in to comment.