| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- name: Build slim packages
- concurrency:
- group: slim-${{ github.event_name }}-${{ github.ref }}
- cancel-in-progress: true
- on:
- workflow_call:
- workflow_dispatch:
- inputs:
- ref:
- required: false
- permissions:
- contents: read
- jobs:
- linux:
- runs-on: ${{ github.repository_owner == 'emqx' && fromJSON(format('["self-hosted","ephemeral","linux","{0}"]', matrix.profile[2])) || 'ubuntu-22.04' }}
- env:
- PROFILE: ${{ matrix.profile[0] }}
- ELIXIR: ${{ matrix.profile[1] == 'elixir' && 'yes' || 'no' }}
- ARCH: ${{ matrix.profile[2] == 'x64' && 'amd64' || 'arm64' }}
- BUILDER_SYSTEM: force_docker
- strategy:
- fail-fast: false
- matrix:
- profile:
- - ["emqx", "elixir", "x64"]
- - ["emqx", "elixir", "arm64"]
- - ["emqx-enterprise", "erlang", "x64"]
- steps:
- - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- with:
- fetch-depth: 0
- - name: build tgz
- run: |
- ./scripts/buildx.sh --profile $PROFILE --pkgtype tgz --elixir $ELIXIR --arch $ARCH
- - name: build pkg
- run: |
- ./scripts/buildx.sh --profile $PROFILE --pkgtype pkg --elixir $ELIXIR --arch $ARCH
- - uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
- with:
- name: "${{ matrix.profile[0] }}-${{ matrix.profile[1] }}-${{ matrix.profile[2] }}"
- path: _packages/${{ matrix.profile[0] }}/*
- retention-days: 7
- compression-level: 0
- mac:
- strategy:
- fail-fast: false
- matrix:
- profile:
- - emqx
- os:
- - macos-14-arm64
- runs-on: ${{ matrix.os }}
- env:
- EMQX_NAME: ${{ matrix.profile }}
- steps:
- - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- - name: Set up environment
- id: env
- run: |
- source env.sh
- echo "OTP_VSN=$OTP_VSN" >> "$GITHUB_OUTPUT"
- - uses: ./.github/actions/package-macos
- with:
- profile: ${{ matrix.profile }}
- otp: ${{ steps.env.outputs.OTP_VSN }}
- os: ${{ matrix.os }}
- apple_id_password: ${{ secrets.APPLE_ID_PASSWORD }}
- apple_developer_identity: ${{ secrets.APPLE_DEVELOPER_IDENTITY }}
- apple_developer_id_bundle: ${{ secrets.APPLE_DEVELOPER_ID_BUNDLE }}
- apple_developer_id_bundle_password: ${{ secrets.APPLE_DEVELOPER_ID_BUNDLE_PASSWORD }}
- - uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
- with:
- name: ${{ matrix.os }}
- path: _packages/**/*
- retention-days: 7
|