Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into bboozzoo/update-2.65.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bboozzoo committed Sep 13, 2024
2 parents 7bc793e + e85e98c commit a9105bc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/buildrepo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ env:
jobs:
build-repo:
strategy:
fail-fast: false
matrix:
target: ["amazonlinux:2", "amazonlinux:2023"]
include:
Expand All @@ -27,6 +28,12 @@ jobs:

runs-on: ubuntu-latest
container: ${{ matrix.target }}
env:
# the steps are executed inside the container, in case of AMZN2, node20
# build provided by github requires newer glibc than present in the
# container, so we must use a workaround, see:
# https://github.com/actions/checkout/issues/1809
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: ${{ matrix.target == 'amazonlinux:2' && 'true' || '' }}
steps:
- name: Install git
run: |
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ jobs:

runs-on: ubuntu-latest
container: ${{ matrix.target }}
env:
# see the comment in buildrepo workflow
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: ${{ matrix.target == 'amazonlinux:2' && 'true' || '' }}
steps:
- name: Install git
run: |
Expand Down

0 comments on commit a9105bc

Please sign in to comment.