|
6 | 6 | push: |
7 | 7 | tags: |
8 | 8 | - "*" |
| 9 | + workflow_dispatch: |
9 | 10 |
|
10 | 11 | permissions: |
11 | 12 | contents: write |
@@ -101,10 +102,8 @@ jobs: |
101 | 102 | ${{ steps.archive-arm64.outputs.TARBALL }} |
102 | 103 | ${{ steps.archive-arm64.outputs.SHASUM }} |
103 | 104 |
|
104 | | - # Build with gcc 6.3 and run tests on Alpine Linux (inside chroot). |
105 | | - # Note: Alpine uses musl libc. |
106 | | - build-alpine: |
107 | | - name: alpine |
| 105 | + build-linux: |
| 106 | + name: Linux |
108 | 107 | runs-on: ${{ matrix.os }} |
109 | 108 | strategy: |
110 | 109 | matrix: |
@@ -139,24 +138,24 @@ jobs: |
139 | 138 | id: archive |
140 | 139 | run: | |
141 | 140 | VERSION=$GITHUB_REF_NAME |
142 | | - ARCH=$(./alpine.sh uname -m) |
| 141 | + ARCH=$(uname -m) |
143 | 142 | PKGNAME="binaryen-$VERSION-$ARCH-linux" |
144 | 143 | TARBALL=$PKGNAME.tar.gz |
145 | 144 | SHASUM=$PKGNAME.tar.gz.sha256 |
146 | | - ./alpine.sh find install/ -type f -perm -u=x -exec strip {} + |
| 145 | + find install/ -type f -perm -u=x -exec strip {} + |
147 | 146 | mv install binaryen-$VERSION |
148 | 147 | tar -czf $TARBALL binaryen-$VERSION |
149 | 148 | cmake -E sha256sum $TARBALL > $SHASUM |
150 | 149 | echo "TARBALL=$TARBALL" >> $GITHUB_OUTPUT |
151 | 150 | echo "SHASUM=$SHASUM" >> $GITHUB_OUTPUT |
152 | 151 |
|
153 | | - - name: upload tarball |
154 | | - uses: softprops/action-gh-release@v1 |
155 | | - with: |
156 | | - draft: true |
157 | | - files: | |
158 | | - ${{ steps.archive.outputs.TARBALL }} |
159 | | - ${{ steps.archive.outputs.SHASUM }} |
| 152 | + #- name: upload tarball |
| 153 | + # uses: softprops/action-gh-release@v1 |
| 154 | + # with: |
| 155 | + # draft: true |
| 156 | + # files: | |
| 157 | + # ${{ steps.archive.outputs.TARBALL }} |
| 158 | + # ${{ steps.archive.outputs.SHASUM }} |
160 | 159 |
|
161 | 160 | # Build using Emscripten to JavaScript+WebAssembly. |
162 | 161 | build-node: |
@@ -216,10 +215,10 @@ jobs: |
216 | 215 | echo "TARBALL=$TARBALL" >> $GITHUB_OUTPUT |
217 | 216 | echo "SHASUM=$SHASUM" >> $GITHUB_OUTPUT |
218 | 217 |
|
219 | | - - name: upload tarball |
220 | | - uses: softprops/action-gh-release@v1 |
221 | | - with: |
222 | | - draft: true |
223 | | - files: | |
224 | | - ${{ steps.archive.outputs.TARBALL }} |
225 | | - ${{ steps.archive.outputs.SHASUM }} |
| 218 | + #- name: upload tarball |
| 219 | + # uses: softprops/action-gh-release@v1 |
| 220 | + # with: |
| 221 | + # draft: true |
| 222 | + # files: | |
| 223 | + # ${{ steps.archive.outputs.TARBALL }} |
| 224 | + # ${{ steps.archive.outputs.SHASUM }} |
0 commit comments