update quickjs library to not use libc and load modules manually. #15
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build binary for all platforms | |
on: | |
push: | |
tags: | |
- '*' | |
permissions: | |
contents: write | |
jobs: | |
make-release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/create-release@latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: ${{ github.ref }} | |
build-all-for-all: | |
runs-on: ubuntu-latest | |
needs: | |
- make-release | |
strategy: | |
matrix: | |
goos: [linux, darwin] | |
goarch: [amd64, arm64] | |
exclude: | |
- goarch: arm64 | |
goos: linux | |
steps: | |
- run: sudo apt install clang libsqlite3-dev liblmdb-dev | |
- uses: actions/checkout@v3 | |
- uses: wangyoucao577/go-release-action@v1.40 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
goos: ${{ matrix.goos }} | |
goarch: ${{ matrix.goarch }} | |
overwrite: true | |
md5sum: false | |
sha256sum: false | |
compress_assets: false |