Skip to content

Commit 29241a2

Browse files
committed
node.js is broken on Alpine 3.12
``` /usr/bin/docker exec b6b00889ce59b62d3fdddcf068b7ca6cd09606da324e33b7e3754c74054cb218 sh -c "cat /etc/*release | grep ^ID" Error relocating /__e/node24_alpine/bin/node: pthread_getname_np: symbol not found ``` Upgrading both validate (was 3.19) and release (3.12) to 3.20 instead. I hope the release one was just a missed upgrade.
1 parent b4696fd commit 29241a2

File tree

2 files changed

+1
-14
lines changed

2 files changed

+1
-14
lines changed

.github/workflows/reusable-release.yml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -140,13 +140,6 @@ jobs:
140140
, ARTIFACT: "x86_64-linux-unknown"
141141
, ADD_CABAL_ARGS: "--enable-split-sections --enable-executable-static"
142142
},
143-
{ image: "alpine:3.12"
144-
, installCmd: "apk update && apk add"
145-
, toolRequirements: "${{ needs.tool-output.outputs.apk_tools }}"
146-
, DISTRO: "Unknown"
147-
, ARTIFACT: "x86_64-linux-alpine312"
148-
, ADD_CABAL_ARGS: "--enable-split-sections"
149-
},
150143
{ image: "alpine:3.20"
151144
, installCmd: "apk update && apk add"
152145
, toolRequirements: "${{ needs.tool-output.outputs.apk_tools }}"
@@ -530,12 +523,6 @@ jobs:
530523
, DISTRO: "Unknown"
531524
, ARTIFACT: "x86_64-linux-unknown"
532525
},
533-
{ image: "alpine:3.12"
534-
, installCmd: "apk update && apk add"
535-
, toolRequirements: "${{ needs.tool-output.outputs.apk_tools }}"
536-
, DISTRO: "Unknown"
537-
, ARTIFACT: "x86_64-linux-alpine312"
538-
},
539526
{ image: "alpine:3.20"
540527
, installCmd: "apk update && apk add"
541528
, toolRequirements: "${{ needs.tool-output.outputs.apk_tools }}"

.github/workflows/validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ jobs:
314314
build-alpine:
315315
name: Build statically linked using alpine
316316
runs-on: ubuntu-latest
317-
container: "alpine:3.19"
317+
container: "alpine:3.20"
318318
steps:
319319
- name: Install extra dependencies
320320
shell: sh

0 commit comments

Comments
 (0)