|
@@ -15,17 +15,33 @@ jobs:
|
|
strategy:
|
|
strategy:
|
|
fail-fast: false
|
|
fail-fast: false
|
|
matrix:
|
|
matrix:
|
|
- os: [windows-latest, ubuntu-latest, macos-latest]
|
|
|
|
|
|
+ include:
|
|
|
|
+ - os: windows-latest
|
|
|
|
+ target: x86_64-pc-windows-msvc
|
|
|
|
+ # - os: windows-latest
|
|
|
|
+ # target: aarch64-pc-windows-msvc
|
|
|
|
+ - os: macos-latest
|
|
|
|
+ target: aarch64-apple-darwin
|
|
|
|
+ - os: macos-latest
|
|
|
|
+ target: x86_64-apple-darwin
|
|
|
|
+ - os: ubuntu-latest
|
|
|
|
+ target: x86_64-unknown-linux-gnu
|
|
|
|
+ - os: ubuntu-latest
|
|
|
|
+ target: aarch64-unknown-linux-gnu
|
|
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
runs-on: ${{ matrix.os }}
|
|
if: startsWith(github.repository, 'wonfen')
|
|
if: startsWith(github.repository, 'wonfen')
|
|
steps:
|
|
steps:
|
|
- - name: Checkout repository
|
|
|
|
|
|
+ - name: Checkout Repository
|
|
uses: actions/checkout@v4
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
- - name: install Rust stable
|
|
|
|
|
|
+ - name: Install Rust Stable
|
|
uses: dtolnay/rust-toolchain@stable
|
|
uses: dtolnay/rust-toolchain@stable
|
|
|
|
|
|
|
|
+ - name: Add Rust Target
|
|
|
|
+ run: |
|
|
|
|
+ rustup target add ${{ matrix.target }}
|
|
|
|
+
|
|
- name: Rust Cache
|
|
- name: Rust Cache
|
|
uses: Swatinem/rust-cache@v2
|
|
uses: Swatinem/rust-cache@v2
|
|
with:
|
|
with:
|
|
@@ -43,22 +59,56 @@ jobs:
|
|
run_install: false
|
|
run_install: false
|
|
|
|
|
|
- name: Install Dependencies (Ubuntu Only)
|
|
- name: Install Dependencies (Ubuntu Only)
|
|
- if: startsWith(matrix.os, 'ubuntu-')
|
|
|
|
|
|
+ if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.target,'x86_64')
|
|
|
|
+ run: |
|
|
|
|
+ sudo apt-get update
|
|
|
|
+ sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libayatana-appindicator3-dev librsvg2-dev patchelf openssl
|
|
|
|
+
|
|
|
|
+ - name: Install Dependencies (Ubuntu Only)
|
|
|
|
+ if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.target,'aarch64')
|
|
run: |
|
|
run: |
|
|
|
|
+ sed 's/mirror+file:\/etc\/apt\/apt-mirrors.txt/[arch-=amd64,i386] http:\/\/ports.ubuntu.com\/ubuntu-ports\//g' /etc/apt/sources.list | sudo tee /etc/apt/sources.list.d/ports.list
|
|
|
|
+ sudo sed -i 's/mirror+file/[arch=amd64,i386] mirror+file/g' /etc/apt/sources.list
|
|
|
|
+ cat /etc/apt/sources.list
|
|
|
|
+ cat /etc/apt/sources.list.d/ports.list
|
|
|
|
+ sudo dpkg --add-architecture arm64
|
|
sudo apt-get update
|
|
sudo apt-get update
|
|
- sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf openssl
|
|
|
|
|
|
+ sudo apt-get install -y libncurses6:arm64 libtinfo6:arm64 linux-libc-dev:arm64 libncursesw6:arm64 libssl3:arm64 libcups2:arm64
|
|
|
|
+ sudo apt-get install -y --no-install-recommends g++-aarch64-linux-gnu libc6-dev-arm64-cross libssl-dev:arm64 libwebkit2gtk-4.0-dev:arm64 libgtk-3-dev:arm64 patchelf:arm64 librsvg2-dev:arm64 libayatana-appindicator3-dev:arm64
|
|
|
|
|
|
- name: Pnpm install and check
|
|
- name: Pnpm install and check
|
|
run: |
|
|
run: |
|
|
pnpm i
|
|
pnpm i
|
|
- pnpm check
|
|
|
|
|
|
+ pnpm check ${{ matrix.target }}
|
|
|
|
|
|
- name: Tauri build
|
|
- name: Tauri build
|
|
|
|
+ if: startsWith(matrix.os, 'windows') || startsWith(matrix.os,'macos') || startsWith(matrix.target,'x86_64')
|
|
|
|
+ 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 }}
|
|
|
|
+ with:
|
|
|
|
+ tagName: v__VERSION__
|
|
|
|
+ releaseName: "Clash Verge v__VERSION__"
|
|
|
|
+ releaseBody: "More new features are now supported."
|
|
|
|
+ releaseDraft: false
|
|
|
|
+ prerelease: false
|
|
|
|
+ tauriScript: pnpm
|
|
|
|
+ args: -f default-meta --target ${{ matrix.target }}
|
|
|
|
+
|
|
|
|
+ - name: Tauri build (Ubuntu Arm64)
|
|
|
|
+ if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.target,'aarch64')
|
|
uses: tauri-apps/tauri-action@v0
|
|
uses: tauri-apps/tauri-action@v0
|
|
env:
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
|
|
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
|
|
TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}
|
|
TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}
|
|
|
|
+ CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: aarch64-linux-gnu-gcc
|
|
|
|
+ CC_aarch64_unknown_linux_gnu: aarch64-linux-gnu-gcc
|
|
|
|
+ CXX_aarch64_unknown_linux_gnu: aarch64-linux-gnu-g++
|
|
|
|
+ PKG_CONFIG_PATH: /usr/lib/aarch64-linux-gnu/pkgconfig
|
|
|
|
+ PKG_CONFIG_ALLOW_CROSS: 1
|
|
with:
|
|
with:
|
|
tagName: v__VERSION__
|
|
tagName: v__VERSION__
|
|
releaseName: "Clash Verge v__VERSION__"
|
|
releaseName: "Clash Verge v__VERSION__"
|
|
@@ -66,7 +116,7 @@ jobs:
|
|
releaseDraft: false
|
|
releaseDraft: false
|
|
prerelease: false
|
|
prerelease: false
|
|
tauriScript: pnpm
|
|
tauriScript: pnpm
|
|
- args: -f default-meta
|
|
|
|
|
|
+ args: -f default-meta --target ${{ matrix.target }} -b deb,updater
|
|
|
|
|
|
- name: Portable Bundle
|
|
- name: Portable Bundle
|
|
if: matrix.os == 'windows-latest'
|
|
if: matrix.os == 'windows-latest'
|