clash-verge-rev/.github/workflows/test.yml

74 lines
1.8 KiB
YAML
Raw Normal View History

2022-05-11 00:31:19 +08:00
name: Test CI
2022-05-11 11:22:09 +08:00
on:
workflow_dispatch:
inputs:
os:
description: "Runs on OS"
required: true
default: windows-latest
type: choice
options:
- windows-latest
- ubuntu-latest
- macos-latest
2022-08-29 11:02:14 +08:00
- ubuntu-18.04
- ubuntu-20.04
- ubuntu-22.04
- macos-10.15
- macos-11
- macos-12
- windows-2019
- windows-2022
2022-05-11 00:31:19 +08:00
env:
CARGO_INCREMENTAL: 0
RUST_BACKTRACE: short
jobs:
release:
2022-05-11 11:22:09 +08:00
runs-on: ${{ github.event.inputs.os }}
2022-05-11 00:31:19 +08:00
if: startsWith(github.repository, 'zzzgydi')
steps:
2022-11-03 00:51:49 +08:00
- name: System Version
run: |
echo ${{ github.event.inputs.os }}
2022-05-11 00:31:19 +08:00
- name: Checkout repository
2023-07-24 09:47:05 +08:00
uses: actions/checkout@v3
2022-05-11 00:31:19 +08:00
2023-07-24 09:13:19 +08:00
- name: install Rust stable
uses: dtolnay/rust-toolchain@stable
2022-05-11 00:31:19 +08:00
2022-09-28 18:50:33 +08:00
- name: Rust Cache
2022-11-20 23:17:05 +08:00
uses: Swatinem/rust-cache@v2
2022-09-28 18:50:33 +08:00
with:
2022-11-20 23:17:05 +08:00
workspaces: src-tauri
2022-05-11 11:30:19 +08:00
2022-05-11 00:31:19 +08:00
- name: Install Node
2023-07-24 09:47:05 +08:00
uses: actions/setup-node@v3
2022-05-11 00:31:19 +08:00
with:
2023-07-24 09:47:05 +08:00
node-version: "16"
cache: "yarn"
2022-05-11 00:31:19 +08:00
- name: Install Dependencies (ubuntu only)
2022-08-29 17:26:09 +08:00
if: startsWith(github.event.inputs.os, 'ubuntu-')
2022-05-11 00:31:19 +08:00
run: |
sudo apt-get update
2023-07-24 09:13:19 +08:00
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
2022-09-28 17:26:32 +08:00
2022-05-11 00:31:19 +08:00
- name: Yarn install and check
run: |
2023-07-24 09:47:05 +08:00
yarn install --network-timeout 1000000 --frozen-lockfile
2022-06-01 00:43:57 +08:00
yarn run check
2022-05-11 00:31:19 +08:00
2022-09-28 18:50:33 +08:00
- name: Tauri build
2022-11-20 23:17:05 +08:00
uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}
2023-07-24 09:47:05 +08:00
with:
tagName: alpha
includeUpdaterJson: false