2020-02-12 21:55:44 +03:00
|
|
|
name: windows_continuous
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
2021-01-30 23:34:54 +03:00
|
|
|
- cron: "10 3 * * *"
|
|
|
|
push:
|
|
|
|
branches:
|
2021-09-21 16:24:52 +03:00
|
|
|
- main
|
2021-01-30 23:34:54 +03:00
|
|
|
paths-ignore:
|
2021-09-21 16:24:52 +03:00
|
|
|
- ".cirrus.yml"
|
|
|
|
- "docs/**"
|
|
|
|
- "ci/build-docs.sh"
|
|
|
|
- "ci/generate-docs.py"
|
|
|
|
- "ci/subst-release-info.py"
|
|
|
|
- ".github/workflows/pages.yml"
|
2021-12-12 09:33:46 +03:00
|
|
|
- ".github/workflows/verify-pages.yml"
|
2021-09-21 16:24:52 +03:00
|
|
|
- ".github/ISSUE_TEMPLATE/*"
|
|
|
|
- "**/*.md"
|
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
|
|
|
|
2020-02-12 21:55:44 +03:00
|
|
|
steps:
|
2021-09-21 16:24:52 +03:00
|
|
|
- name: "checkout repo"
|
2022-03-09 17:32:40 +03:00
|
|
|
uses: actions/checkout@v3
|
2021-09-21 16:24:52 +03:00
|
|
|
with:
|
|
|
|
submodules: "recursive"
|
|
|
|
- name: "Install Rust"
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: "minimal"
|
|
|
|
toolchain: "stable"
|
|
|
|
override: true
|
|
|
|
components: "rustfmt"
|
|
|
|
target: "x86_64-pc-windows-msvc"
|
|
|
|
env:
|
|
|
|
ACTIONS_ALLOW_UNSECURE_COMMANDS: "true"
|
|
|
|
- name: "Cache cargo"
|
2021-11-29 05:10:08 +03:00
|
|
|
uses: actions/cache@v2.1.7
|
2021-09-21 16:24:52 +03:00
|
|
|
with:
|
|
|
|
path: |
|
2020-10-10 17:29:17 +03:00
|
|
|
~/.cargo/registry
|
|
|
|
~/.cargo/git
|
|
|
|
target
|
2021-09-21 16:24:52 +03:00
|
|
|
key: "windows-x86_64-pc-windows-msvc-2-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}-cargo"
|
|
|
|
- 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
|
|
|
|
- name: "Test (Release mode)"
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
export BUILD_REASON=Schedule
|
|
|
|
cargo test --all --release
|
|
|
|
- name: "Package"
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
export BUILD_REASON=Schedule
|
|
|
|
bash ci/deploy.sh
|
2021-12-07 05:37:33 +03:00
|
|
|
- name: "Upload artifact"
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: "windows"
|
|
|
|
path: |
|
|
|
|
WezTerm-*.zip
|
|
|
|
WezTerm-*.exe
|
2021-12-08 20:14:08 +03:00
|
|
|
retention-days: 5
|
|
|
|
|
|
|
|
upload:
|
|
|
|
runs-on: ubuntu-latest
|
2021-12-08 20:16:58 +03:00
|
|
|
needs: build
|
2021-12-08 20:14:08 +03:00
|
|
|
steps:
|
2021-12-08 21:19:00 +03:00
|
|
|
- name: "checkout repo"
|
2022-03-09 17:32:40 +03:00
|
|
|
uses: actions/checkout@v3
|
2021-12-08 20:14:08 +03:00
|
|
|
- name: "Download artifact"
|
|
|
|
uses: actions/download-artifact@v2
|
|
|
|
with:
|
|
|
|
name: "windows"
|
2021-09-21 16:24:52 +03:00
|
|
|
- name: "Upload to Nightly Release"
|
2021-12-06 19:11:26 +03:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
shell: bash
|
2021-12-08 21:19:00 +03:00
|
|
|
run: "bash ci/retry.sh gh release upload --clobber nightly WezTerm-*.zip WezTerm-*.exe"
|