Skip to content

Commit

Permalink
CI: build SIMD and standard
Browse files Browse the repository at this point in the history
  • Loading branch information
Birch-san committed Jan 8, 2025
1 parent 79c1681 commit fd74cec
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,21 +83,36 @@ jobs:
else
echo "target_type=Release" >> $GITHUB_OUTPUT
fi
- name: build makefile
- name: "SIMD: build makefile"
working-directory: box2d3-wasm
run: shell/0_build_makefile.sh
env:
FLAVOUR: simd
TARGET_TYPE: ${{ steps.build-type.outputs.target_type }}
- name: emmake
- name: "SIMD: emmake"
working-directory: box2d3-wasm
run: emmake make -j8 -C cmake-build
- name: build wasm
run: emmake make -j8 -C cmake-build-simd
- name: "SIMD: build wasm"
working-directory: box2d3-wasm
run: shell/1_build_wasm.sh
env:
FLAVOUR: simd
TARGET_TYPE: ${{ steps.build-type.outputs.target_type }}
- name: "Standard: build makefile"
working-directory: box2d3-wasm
run: shell/0_build_makefile.sh
env:
FLAVOUR: standard
TARGET_TYPE: ${{ steps.build-type.outputs.target_type }}
- name: "Standard: emmake"
working-directory: box2d3-wasm
run: emmake make -j8 -C cmake-build-standard
- name: "Standard: build wasm"
working-directory: box2d3-wasm
run: shell/1_build_wasm.sh
env:
FLAVOUR: standard
TARGET_TYPE: ${{ steps.build-type.outputs.target_type }}
# Pack mode: Create prerelease version without git tags
- name: version for pack
id: pack_version
Expand Down

0 comments on commit fd74cec

Please sign in to comment.