We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent baa8763 commit 784ef38Copy full SHA for 784ef38
1 file changed
.github/workflows/main.yml
@@ -71,6 +71,7 @@ jobs:
71
steps:
72
73
- uses: actions/checkout@v4.2.2
74
+ if: matrix.name != 'linux-musl' && matrix.arch != 'arm64'
75
76
- uses: msys2/setup-msys2@v2.27.0
77
if: matrix.os == 'windows-latest'
@@ -79,6 +80,17 @@ jobs:
79
80
install: >-
81
mingw-w64-x86_64-cc
82
make
83
+
84
+ - name: Musl arm64 git clone
85
+ if: matrix.name == 'linux-musl' && matrix.arch == 'arm64'
86
+ run: |
87
+ git clone https://github.com/${{ github.repository }}.git .
88
+ git checkout ${{ github.sha }}
89
90
+ echo "Repository cloned successfully"
91
+ echo "Current commit: $(git rev-parse HEAD)"
92
+ echo "Files:"
93
+ ls -la
94
95
- name: Install build dependencies
96
if: matrix.name == 'linux-musl'
0 commit comments