-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ci: releases with openssl3 * fix(build): conditionally enable numa aware * ci: release macos
- Loading branch information
Showing
3 changed files
with
22 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,12 +13,16 @@ jobs: | |
matrix: | ||
otp: | ||
- 25.3.2-1 | ||
openssl: | ||
- openssl3 | ||
- openssl | ||
os: | ||
- macos-12 | ||
- macos-11 | ||
- macos-12-arm64 | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
|
||
- uses: emqx/[email protected] | ||
with: | ||
os: ${{ matrix.os }} | ||
|
@@ -30,7 +34,10 @@ jobs: | |
|
||
- name: build release | ||
if: startsWith(github.ref, 'refs/tags/') | ||
env: | ||
QUIC_TLS: ${{ matrix.openssl }} | ||
run: | | ||
export QUIC_TLS | ||
BUILD_RELEASE=1 make | ||
- uses: actions/upload-artifact@v3 | ||
|
@@ -49,6 +56,9 @@ jobs: | |
- 5.1-3 | ||
otp: | ||
- 25.3.2-1 | ||
openssl: | ||
- openssl3 | ||
- openssl | ||
elixir: | ||
- 1.14.5 | ||
arch: | ||
|
@@ -90,7 +100,9 @@ jobs: | |
if: startsWith(github.ref, 'refs/tags/') | ||
run: | | ||
IMAGE=ghcr.io/emqx/emqx-builder/${{ matrix.builder }}:${{ matrix.elixir }}-${{ matrix.otp }}-${{ matrix.os }} | ||
docker run -i --rm -v $(pwd):/wd --workdir /wd --platform=linux/${{ matrix.arch }} -e BUILD_RELEASE=1 $IMAGE bash -euc 'git config --global --add safe.directory /wd; make' | ||
docker run -i --rm -v $(pwd):/wd --workdir /wd --platform=linux/${{ matrix.arch }} \ | ||
-e BUILD_RELEASE=1 -e QUIC_TLS=${{ matrix.openssl }} \ | ||
$IMAGE bash -euc 'git config --global --add safe.directory /wd; make' | ||
- uses: actions/upload-artifact@v3 | ||
if: startsWith(github.ref, 'refs/tags/') | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters