feat: add OTP 24, OTP 27, bump elixir to 1.17.3 #133
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: Build docker images | ||
concurrency: | ||
group: test-${{ github.ref }} | ||
cancel-in-progress: true | ||
on: | ||
pull_request: | ||
jobs: | ||
sanity-checks: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 | ||
- name: Check workflow files | ||
env: | ||
ACTIONLINT_VSN: 1.6.25 | ||
run: | | ||
wget https://github.com/rhysd/actionlint/releases/download/v${ACTIONLINT_VSN}/actionlint_${ACTIONLINT_VSN}_linux_amd64.tar.gz | ||
tar zxf actionlint_${ACTIONLINT_VSN}_linux_amd64.tar.gz actionlint | ||
# TODO: enable shellcheck when all the current issues are fixed | ||
./actionlint -color -shellcheck= | ||
prepare: | ||
runs-on: ubuntu-latest | ||
needs: | ||
- sanity-checks | ||
outputs: | ||
versions: ${{ steps.versions.outputs.versions }} | ||
steps: | ||
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 | ||
- name: get release versions | ||
id: versions | ||
run: | | ||
#!/bin/bash | ||
versions="$(grep -E "^\+\sOTP-.*" ./RELEASE.md | \ | ||
sed -E 's/\+\sOTP-([0-9.-]*),Elixir-([0-9.]*).*/{"otp":"\1","elixir":"\2"}/g' | \ | ||
jq -sc .)" | ||
echo "versions=$versions" | tee -a $GITHUB_OUTPUT | ||
build: | ||
name: ${{ matrix.platform[0] }} ${{ matrix.platform[1] }} OTP-${{ matrix.otp }} Elixir-${{ matrix.elixir }} | ||
runs-on: ${{ github.repository_owner == 'emqx' && matrix.platform[2] || '["ubuntu-latest"]' }} | ||
needs: | ||
- prepare | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: ${{ fromJSON(needs.prepare.outputs.versions) }} | ||
base_image_vsn: | ||
- "5.0" | ||
platform: | ||
- [ubuntu24.04, linux/amd64, [self-hosted, linux, x64, ephemeral]] | ||
- [ubuntu24.04, linux/arm64, [self-hosted, linux, arm64, ephemeral]] | ||
- [ubuntu22.04, linux/amd64, [self-hosted, linux, x64, ephemeral]] | ||
- [ubuntu22.04, linux/arm64, [self-hosted, linux, arm64, ephemeral]] | ||
- [ubuntu20.04, linux/amd64, [self-hosted, linux, x64, ephemeral]] | ||
- [ubuntu20.04, linux/arm64, [self-hosted, linux, arm64, ephemeral]] | ||
- [ubuntu18.04, linux/amd64, [self-hosted, linux, x64, ephemeral]] | ||
- [ubuntu18.04, linux/arm64, [self-hosted, linux, arm64, ephemeral]] | ||
- [debian12, linux/amd64, [self-hosted, linux, x64, ephemeral]] | ||
- [debian12, linux/arm64, [self-hosted, linux, arm64, ephemeral]] | ||
- [debian11, linux/amd64, [self-hosted, linux, x64, ephemeral]] | ||
- [debian11, linux/arm64, [self-hosted, linux, arm64, ephemeral]] | ||
- [debian10, linux/amd64, [self-hosted, linux, x64, ephemeral]] | ||
- [debian10, linux/arm64, [self-hosted, linux, arm64, ephemeral]] | ||
- [el9, linux/amd64, [self-hosted, linux, x64, ephemeral]] | ||
- [el9, linux/arm64, [self-hosted, linux, arm64, ephemeral]] | ||
- [el8, linux/amd64, [self-hosted, linux, x64, ephemeral]] | ||
- [el8, linux/arm64, [self-hosted, linux, arm64, ephemeral]] | ||
- [el7, linux/amd64, [self-hosted, linux, x64, ephemeral]] | ||
- [el7, linux/arm64, [self-hosted, linux, arm64, ephemeral]] | ||
- [amzn2, linux/amd64, [self-hosted, linux, x64, ephemeral]] | ||
- [amzn2, linux/arm64, [self-hosted, linux, arm64, ephemeral]] | ||
- [amzn2023, linux/amd64, [self-hosted, linux, x64, ephemeral]] | ||
- [amzn2023, linux/arm64, [self-hosted, linux, arm64, ephemeral]] | ||
- [alpine3.15.1, linux/amd64, [self-hosted, linux, x64, ephemeral]] | ||
- [alpine3.15.1, linux/arm64, [self-hosted, linux, arm64, ephemeral]] | ||
steps: | ||
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 | ||
- uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # v4.0.2 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: ${{ secrets.AWS_DEFAULT_REGION }} | ||
- uses: docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20 # v3.1.0 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ github.token }} | ||
- name: define base tag | ||
id: base_tag | ||
run: | | ||
PLATFORM=${{ matrix.platform[1] }} | ||
ARCH="${PLATFORM#linux/}" | ||
TAG="${{ matrix.platform[0] }}-${ARCH}" | ||
echo "tag=${TAG}" | tee -a $GITHUB_OUTPUT | ||
echo "image=ghcr.io/${{ github.repository }}/base-${{ matrix.base_image_vsn }}:${TAG}" | tee -a $GITHUB_OUTPUT | ||
- name: Get cache | ||
run: aws s3 sync s3://docker-buildx-cache/emqx-builder/${{ steps.base_tag.outputs.tag }} /tmp/.docker-buildx-cache | ||
- uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3.0.0 | ||
- uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3.3.0 | ||
with: | ||
driver-opts: network=host | ||
- uses: docker/build-push-action@2cdde995de11925a030ce8070c3d77a52ffcf1c0 # v5.3.0 | ||
with: | ||
platforms: ${{ matrix.platform[1] }} | ||
cache-from: type=local,src=/tmp/.docker-buildx-cache,mode=max | ||
build-args: | | ||
Check failure on line 111 in .github/workflows/test.yaml GitHub Actions / Build docker imagesInvalid workflow file
|
||
BUILD_FROM=${{ steps.base_tag.outputs.image }} | ||
OTP_VERSION=${{ matrix.otp }} | ||
ELIXIR_VERSION=${{ matrix.elixir] }} | ||
file: ./Dockerfile | ||
context: . |