Skip to content

Commit 171188c

Browse files
committed
fix: remove macos env, cleanup steps
1 parent aaa1a80 commit 171188c

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

.github/workflows/build.yml

+6-8
Original file line numberDiff line numberDiff line change
@@ -26,26 +26,23 @@ jobs:
2626
fail-fast: false
2727
matrix:
2828
node-version: [18.x]
29-
platform: [macos-latest, ubuntu-latest, windows-latest]
29+
platform: [ubuntu-latest, windows-latest]
3030
include:
3131
- os: ubuntu-latest
3232
rust_target: x86_64-unknown-linux-gnu
33-
- os: macos-latest
34-
rust_target: x86_64-apple-darwin
35-
- os: macos-latest
36-
rust_target: aarch64-apple-darwin
3733
- os: windows-latest
3834
rust_target: x86_64-pc-windows-msvc
35+
#- os: macos-latest
36+
# rust_target: x86_64-apple-darwin
37+
#- os: macos-latest
38+
# rust_target: aarch64-apple-darwin
3939
runs-on: ${{ matrix.platform }}
4040
steps:
4141
- name: Checkout repository
4242
uses: actions/checkout@v3
4343
with:
4444
token: ${{ env.GITHUB_TOKEN }}
4545

46-
- name: Output info
47-
run: echo ${{ matrix.platform.os }} ${{ matrix.platform.rust_target }}
48-
4946
- name: Node.js setup ${{ matrix.node-version }}
5047
uses: actions/setup-node@v3
5148
with:
@@ -69,6 +66,7 @@ jobs:
6966
run: |
7067
sudo apt-get update
7168
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf
69+
npm install -g typescript
7270
7371
- name: install dependencies (windows only)
7472
if: matrix.platform == 'windows-latest'

0 commit comments

Comments
 (0)