ci: fix rebar path #55
Workflow file for this run
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
name: release | |
on: | |
push: | |
tags: | |
- "*" | |
branches: | |
- 'ci/**' | |
jobs: | |
mac: | |
strategy: | |
fail-fast: false | |
matrix: | |
otp: | |
- 25 | |
- 26 | |
openssl: | |
- openssl3 | |
- openssl | |
os: | |
- macos-12 | |
- macos-12-arm64 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Configure Homebrew cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/Library/Caches/Homebrew/ | |
~/Library/Caches/Homebrew/downloads/ | |
key: brew-${{ matrix.os }}-${{ matrix.otp }} | |
- name: prepare | |
run: | | |
export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 | |
brew install erlang@${{ matrix.otp }} | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: build release | |
if: startsWith(github.ref, 'refs/tags/') | |
env: | |
QUIC_TLS: ${{ matrix.openssl }} | |
run: | | |
wget https://s3.amazonaws.com/rebar3/rebar3 && chmod +x rebar3 | |
export PATH="$PWD:/usr/local/opt/erlang@${{ matrix.otp }}/bin:$PATH" | |
erl -eval 'erlang:display(erlang:system_info(system_version)),halt()' | |
export QUIC_TLS | |
BUILD_RELEASE=1 make | |
- uses: actions/upload-artifact@v3 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
name: packages | |
path: | | |
_packages/*.gz | |
_packages/*.gz.sha256 | |
linux: | |
strategy: | |
fail-fast: false | |
matrix: | |
builder: | |
- 5.2-7:1.15.7-25.3.2-2 | |
- 5.2-7:1.15.7-26.1.2-1 | |
openssl: | |
- openssl3 | |
- openssl | |
arch: | |
- amd64 | |
- arm64 | |
os: | |
- ubuntu22.04 | |
- ubuntu20.04 | |
- ubuntu18.04 | |
- debian12 | |
- debian11 | |
- debian10 | |
- amzn2023 | |
- el9 | |
- el8 | |
- el7 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: install rebar3 | |
run: | | |
wget https://s3.amazonaws.com/rebar3/rebar3 && chmod +x rebar3 | |
cp ./rebar3 /usr/local/bin/rebar3 | |
- uses: docker/setup-buildx-action@v2 | |
- uses: docker/setup-qemu-action@v2 | |
with: | |
platforms: ${{ matrix.arch }} | |
- name: build release | |
if: startsWith(github.ref, 'refs/tags/') | |
run: | | |
IMAGE=ghcr.io/emqx/emqx-builder/${{ matrix.builder }}-${{ matrix.os }} | |
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/') | |
with: | |
name: packages | |
path: | | |
_packages/*.gz | |
_packages/*.gz.sha256 | |
release: | |
runs-on: ubuntu-latest | |
needs: | |
- mac | |
- linux | |
if: startsWith(github.ref, 'refs/tags/') | |
steps: | |
- uses: actions/download-artifact@v3 | |
with: | |
name: packages | |
path: packages | |
- name: Create Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
name: quicer ${{ github.ref_name }} Released | |
body: quicer ${{ github.ref_name }} Released | |
files: packages/* | |
draft: false | |
prerelease: false |