Skip to content

Commit

Permalink
Merge pull request #302 from qzhuyan/ci/william/fix-release
Browse files Browse the repository at this point in the history
ci(release): exclude some unsupp builds
  • Loading branch information
qzhuyan authored Oct 3, 2024
2 parents 1552351 + 22d97e2 commit 4b91e74
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/hex_pub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
- '*'

jobs:
if: false
publish:
runs-on: ubuntu-latest
steps:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,8 @@ jobs:
exclude:
- os: el9
openssl: sys
- os: amzn2
openssl: openssl3
runs-on: ubuntu-latest

steps:
Expand All @@ -118,7 +120,7 @@ jobs:
IMAGE=ghcr.io/emqx/emqx-builder/5.3-13:1.15.7-${{ matrix.otp }}-${{ matrix.os }}
docker run -i --rm -v $(pwd):/wd --workdir /wd --platform=linux/${{ matrix.arch }} \
-e BUILD_RELEASE=1 -e QUICER_TLS_VER=${{ matrix.openssl }} \
$IMAGE bash -euc 'git config --global --add safe.directory /wd; make'
$IMAGE bash -euc 'git config --global --add safe.directory /wd; [[ "${QUICER_TLS_VER}" == "openssl3" ]] && which yum && yum install -y perl-IPC-Cmd; make'
- uses: actions/upload-artifact@v4
if: startsWith(github.ref, 'refs/tags/')
Expand Down

0 comments on commit 4b91e74

Please sign in to comment.