Skip to content

Commit

Permalink
reduce release targets + fix build script on ci
Browse files Browse the repository at this point in the history
  • Loading branch information
astahmer committed Oct 30, 2023
1 parent 6045301 commit 21753a7
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 22 deletions.
42 changes: 21 additions & 21 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,33 +64,33 @@ jobs:
fail-fast: false
matrix:
include:
- os: windows-latest
target: win32-x64
npm_config_arch: x64
- os: windows-latest
target: win32-ia32
npm_config_arch: ia32
- os: windows-latest
target: win32-arm64
npm_config_arch: arm
- 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: windows-latest
# target: win32-x64
# npm_config_arch: x64
# - os: windows-latest
# target: win32-ia32
# npm_config_arch: ia32
# - os: windows-latest
# target: win32-arm64
# npm_config_arch: arm
# - 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: macos-latest
# target: darwin-arm64
# npm_config_arch: arm64
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion packages/vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@
"build:shared": "pnpm --filter=../shared build",
"build:ts-plugin": "pnpm --filter=../ts-plugin build",
"build:all": "pnpm build:shared && pnpm build:lsp && pnpm build:ts-plugin",
"build": "BUILD=1 tsup",
"build": "pnpm BUILD=1 tsup",
"dev": "tsup --watch src/index.ts --watch ../language-server/dist/index.js --watch ../shared/dist/index.js --watch ../ts-plugin/dist/index.js",
"clean": "rimraf dist node_modules",
"typecheck": "tsc --noEmit",
Expand Down

0 comments on commit 21753a7

Please sign in to comment.