尝试找一次luadll #1514
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 | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
compile: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: windows-latest | |
platform: win32-x64 | |
- os: ubuntu-20.04 | |
platform: linux-x64 | |
- os: ubuntu-20.04 | |
platform: linux-arm64 | |
- os: macos-latest | |
platform: darwin-x64 | |
- os: macos-latest | |
platform: darwin-arm64 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules : recursive | |
- uses: actboy168/setup-luamake@master | |
- if: matrix.os == 'ubuntu-20.04' | |
run: | | |
sudo apt update | |
sudo apt install -y binutils-dev libunwind-dev | |
- if: matrix.platform == 'linux-arm64' | |
run: | | |
sudo apt install -y gcc-aarch64-linux-gnu g++-aarch64-linux-gnu | |
- run: luamake lua compile/download_deps.lua | |
- run: luamake -mode release -platform ${{ matrix.platform }} | |
- run: npm install -g vsce ovsx | |
- run: npx vsce publish --target ${{ matrix.platform }} -p ${{ secrets.VSCE_KEY }} | |
working-directory: publish | |
continue-on-error: true | |
- run: npx ovsx publish --target ${{ matrix.platform }} -p ${{ secrets.OVSX_KEY }} | |
working-directory: publish | |
continue-on-error: true |