File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed
Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change 7070
7171 steps :
7272
73+ - name : Alpine system info
74+ if : matrix.name == 'musl'
75+ run : |
76+ echo "=== Alpine Linux Information ==="
77+ cat /etc/alpine-release
78+ echo "Kernel: $(uname -r)"
79+ echo "Architecture: $(uname -m)"
80+ echo "Shell: $SHELL"
81+ echo "Available shells:"
82+ cat /etc/shells
83+
73847485
75867990 install : >-
8091 mingw-w64-x86_64-cc
8192 make
93+
94+ - name : Install build dependencies
95+ if : matrix.name == 'musl'
96+ run : |
97+ # Update package index and install essential build tools
98+ apk update
99+ apk add --no-cache \
100+ git \
101+ gcc \
102+ g++ \
103+ make \
104+ cmake \
105+ musl-dev \
106+ linux-headers \
107+ pkgconfig \
108+ autoconf \
109+ automake \
110+ libtool
82111
83112 - name : windows build curl
84113 if : matrix.os == 'windows-latest'
You can’t perform that action at this time.
0 commit comments