|
@@ -9,7 +9,23 @@ jobs:
|
|
strategy:
|
|
strategy:
|
|
fail-fast: false
|
|
fail-fast: false
|
|
matrix:
|
|
matrix:
|
|
- platform: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
|
|
|
+ platform: [macos-latest, windows-latest]
|
|
|
|
+
|
|
|
|
+ steps:
|
|
|
|
+ - uses: actions/checkout@v1
|
|
|
|
+ with:
|
|
|
|
+ fetch-depth: 3
|
|
|
|
+ - name: install stable
|
|
|
|
+ uses: actions-rs/toolchain@v1
|
|
|
|
+ with:
|
|
|
|
+ toolchain: stable
|
|
|
|
+ - name: build
|
|
|
|
+ run: |
|
|
|
|
+ cd ./tauri
|
|
|
|
+ cargo build
|
|
|
|
+
|
|
|
|
+ build-tauri-ubuntu-latest:
|
|
|
|
+ runs-on: ubuntu-latest
|
|
|
|
|
|
steps:
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: actions/checkout@v1
|
|
@@ -19,6 +35,10 @@ jobs:
|
|
uses: actions-rs/toolchain@v1
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
with:
|
|
toolchain: stable
|
|
toolchain: stable
|
|
|
|
+ - name: install webkit2gtk
|
|
|
|
+ run: |
|
|
|
|
+ sudo apt-get update
|
|
|
|
+ sudo apt-get install -y webkit2gtk-4.0
|
|
- name: build
|
|
- name: build
|
|
run: |
|
|
run: |
|
|
cd ./tauri
|
|
cd ./tauri
|