ci: build macos release packages for apple silicon (arm64)
This commit is contained in:
parent
a3140f7a16
commit
5c40b1dffd
|
@ -74,7 +74,7 @@ jobs:
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
echo "::set-output name=BUILD_PROFILE::$PROFILE"
|
echo "BUILD_PROFILE=$PROFILE" >> $GITHUB_OUTPUT
|
||||||
- name: get_all_deps
|
- name: get_all_deps
|
||||||
run: |
|
run: |
|
||||||
make -C source deps-all
|
make -C source deps-all
|
||||||
|
@ -143,8 +143,10 @@ jobs:
|
||||||
- 24.3.4.2-1
|
- 24.3.4.2-1
|
||||||
os:
|
os:
|
||||||
- macos-11
|
- macos-11
|
||||||
|
- macos-12-arm64
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
|
- uses: emqx/self-hosted-cleanup-action@v1.0.3
|
||||||
- uses: actions/download-artifact@v3
|
- uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: source
|
name: source
|
||||||
|
@ -152,11 +154,8 @@ jobs:
|
||||||
- name: unzip source code
|
- name: unzip source code
|
||||||
run: |
|
run: |
|
||||||
ln -s . source
|
ln -s . source
|
||||||
unzip -q source.zip
|
unzip -o -q source.zip
|
||||||
rm source source.zip
|
rm source source.zip
|
||||||
- name: prepare
|
|
||||||
run: |
|
|
||||||
git config --global credential.helper store
|
|
||||||
- uses: ./.github/actions/package-macos
|
- uses: ./.github/actions/package-macos
|
||||||
with:
|
with:
|
||||||
profile: ${{ matrix.profile }}
|
profile: ${{ matrix.profile }}
|
||||||
|
|
|
@ -23,6 +23,8 @@
|
||||||
|
|
||||||
- Keep MQTT v5 User-Property pairs from bridge ingested MQTT messsages to bridge target [#9398](https://github.com/emqx/emqx/pull/9398).
|
- Keep MQTT v5 User-Property pairs from bridge ingested MQTT messsages to bridge target [#9398](https://github.com/emqx/emqx/pull/9398).
|
||||||
|
|
||||||
|
- Start building MacOS packages for Apple Silicon hadrdware [#9423](https://github.com/emqx/emqx/pull/9423).
|
||||||
|
|
||||||
## Bug fixes
|
## Bug fixes
|
||||||
|
|
||||||
- Fix `ssl.existingName` option of helm chart not working [#9307](https://github.com/emqx/emqx/issues/9307).
|
- Fix `ssl.existingName` option of helm chart not working [#9307](https://github.com/emqx/emqx/issues/9307).
|
||||||
|
|
Loading…
Reference in New Issue