ci: remove windows arm #4
This file contains hidden or 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
# .github/workflows/ci2.yaml | |
name: ci | |
on: | |
push: | |
branches: [master] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
include: | |
- os: windows-latest | |
target: win32-x64 | |
npm_config_arch: x64 | |
- os: ubuntu-latest | |
target: linux-x64 | |
npm_config_arch: x64 | |
- os: ubuntu-latest | |
target: linux-arm64 | |
npm_config_arch: arm64 | |
- os: ubuntu-latest | |
target: linux-armhf | |
npm_config_arch: arm | |
- os: ubuntu-latest | |
target: alpine-x64 | |
npm_config_arch: x64 | |
- os: macos-latest | |
target: darwin-x64 | |
npm_config_arch: x64 | |
- os: macos-latest | |
target: darwin-arm64 | |
npm_config_arch: arm64 | |
- os: ubuntu-latest | |
target: universal | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20.15.0 | |
- if: matrix.target != 'universal' | |
name: Install dependencies (with binaries) | |
run: npm ci | |
env: | |
npm_config_arch: ${{ matrix.npm_config_arch }} | |
- if: matrix.target == 'universal' | |
name: Install dependencies (without binaries) | |
run: npm ci | |
- run: npx semantic-release --extends ./package.release.config.js | |
env: | |
VSCE_TARGET: ${{ matrix.target }} | |
# All tokens are required since semantic-release needs to validate them | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
# In case you want to publish to Visual Studio Marketplace | |
VSCE_PAT: ${{ secrets.VSCE_PAT }} | |
# In case you want to publish to Open VSX Registry | |
# OVSX_PAT: ${{ secrets.OVSX_PAT }} | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ matrix.target }} | |
path: '*.vsix' | |
release: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- run: npm ci | |
- uses: actions/download-artifact@v3 | |
- run: npx semantic-release --extends ./publish.release.config.js | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
# In case you want to publish to Visual Studio Marketplace | |
VSCE_PAT: ${{ secrets.VSCE_PAT }} | |
# In case you want to publish to Open VSX Registry | |
# OVSX_PAT: ${{ secrets.OVSX_PAT }} |