diff options
Diffstat (limited to '.github/workflows/build_release.yml')
-rw-r--r-- | .github/workflows/build_release.yml | 43 |
1 files changed, 18 insertions, 25 deletions
diff --git a/.github/workflows/build_release.yml b/.github/workflows/build_release.yml index 285423fb..95be7a75 100644 --- a/.github/workflows/build_release.yml +++ b/.github/workflows/build_release.yml @@ -58,32 +58,25 @@ jobs: run: find bin/ -type f -perm -u=x -exec strip {} + if: matrix.os != 'windows-latest' - - name: archive - id: archive - run: | - OSNAME=$(echo ${{ matrix.os }} | sed 's/-latest//') - VERSION=${{ github.event.release.tag_name }} - PKGNAME="wabt-$VERSION-$OSNAME" - TARBALL=$PKGNAME.tar.gz - SHASUM=$PKGNAME.tar.gz.sha256 - mv install wabt-$VERSION - tar -czf $TARBALL wabt-$VERSION - scripts/sha256sum.py $TARBALL > $SHASUM - echo "::set-output name=tarball::$TARBALL" - echo "::set-output name=shasum::$SHASUM" + - uses: ./.github/actions/release-archive + with: + os: ${{ matrix.os }} + upload_to_release: true - - name: upload tarball - uses: svenstaro/upload-release-action@v2 + build-wasi: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 with: - repo_token: ${{ secrets.GITHUB_TOKEN }} - file: ./${{ steps.archive.outputs.tarball }} - asset_name: ${{ steps.archive.outputs.tarball }} - tag: ${{ github.ref }} + submodules: true + + - name: built-tools + run: | + docker run -di --name wasi-sdk -v $(pwd):/src --workdir /src ghcr.io/webassembly/wasi-sdk:wasi-sdk-20 bash + docker exec wasi-sdk cmake -S . -B out -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=install -DBUILD_TESTS=0 -DBUILD_LIBWASM=0 + docker exec wasi-sdk cmake --build out --config Release --target install - - name: upload shasum - uses: svenstaro/upload-release-action@v2 + - uses: ./.github/actions/release-archive with: - repo_token: ${{ secrets.GITHUB_TOKEN }} - file: ./${{ steps.archive.outputs.shasum }} - asset_name: ${{ steps.archive.outputs.shasum }} - tag: ${{ github.ref }} + os: wasi + upload_to_release: true |