2020-02-13 00:36:31 +03:00
|
|
|
name: windows
|
2020-02-12 21:55:44 +03:00
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
2021-09-21 16:24:52 +03:00
|
|
|
- main
|
2023-03-16 07:31:46 +03:00
|
|
|
paths:
|
|
|
|
- "**/*.rs"
|
|
|
|
- "**/Cargo.lock"
|
|
|
|
- "**/Cargo.toml"
|
2023-03-16 10:05:00 +03:00
|
|
|
- ".github/workflows/gen_windows.yml"
|
2023-03-16 07:31:46 +03:00
|
|
|
- "assets/fonts/**/*"
|
|
|
|
- "assets/icon/*"
|
2023-03-16 10:05:00 +03:00
|
|
|
- "assets/windows/**/*"
|
2023-03-16 07:31:46 +03:00
|
|
|
- "ci/deploy.sh"
|
2023-03-16 10:05:00 +03:00
|
|
|
- "ci/windows-installer.iss"
|
2020-02-12 21:55:44 +03:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2021-11-23 16:57:48 +03:00
|
|
|
runs-on: "windows-latest"
|
2021-10-03 07:25:47 +03:00
|
|
|
|
2022-02-15 18:58:57 +03:00
|
|
|
|
2020-02-12 21:55:44 +03:00
|
|
|
steps:
|
2021-09-21 16:24:52 +03:00
|
|
|
- name: "checkout repo"
|
2022-04-13 06:11:18 +03:00
|
|
|
uses: actions/checkout@v3
|
2021-09-21 16:24:52 +03:00
|
|
|
with:
|
|
|
|
submodules: "recursive"
|
|
|
|
- name: "Install Rust"
|
2023-03-24 20:16:09 +03:00
|
|
|
uses: dtolnay/rust-toolchain@stable
|
2021-09-21 16:24:52 +03:00
|
|
|
with:
|
|
|
|
target: "x86_64-pc-windows-msvc"
|
|
|
|
- name: "Cache cargo"
|
2023-03-25 03:54:36 +03:00
|
|
|
uses: Swatinem/rust-cache@v2
|
2021-09-21 16:24:52 +03:00
|
|
|
with:
|
2023-03-25 03:54:36 +03:00
|
|
|
key: "windows-x86_64-pc-windows-msvc-2-${{ runner.os }}-cargo"
|
2021-09-21 16:24:52 +03:00
|
|
|
- name: "Build (Release mode)"
|
|
|
|
shell: cmd
|
|
|
|
run: |
|
2021-10-03 07:25:47 +03:00
|
|
|
|
2021-09-21 16:24:52 +03:00
|
|
|
PATH C:\Strawberry\perl\bin;%PATH%
|
|
|
|
cargo build --all --release
|
2023-03-25 07:11:22 +03:00
|
|
|
- name: "Install cargo-nextest from Cargo"
|
|
|
|
uses: baptiste0928/cargo-install@v2
|
|
|
|
with:
|
|
|
|
crate: "cargo-nextest"
|
|
|
|
cache-key: "windows"
|
2021-09-21 16:24:52 +03:00
|
|
|
- name: "Test (Release mode)"
|
|
|
|
shell: bash
|
2023-03-25 07:11:22 +03:00
|
|
|
run: "cargo nextest run --all --release --no-fail-fast"
|
2021-09-21 16:24:52 +03:00
|
|
|
- name: "Package"
|
|
|
|
shell: bash
|
|
|
|
run: "bash ci/deploy.sh"
|
|
|
|
- name: "Upload artifact"
|
2022-04-11 04:36:34 +03:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-09-21 16:24:52 +03:00
|
|
|
with:
|
|
|
|
name: "windows"
|
2021-12-09 05:57:25 +03:00
|
|
|
path: |
|
|
|
|
WezTerm-*.zip
|
|
|
|
WezTerm-*.exe
|