2020-02-12 21:55:44 +03:00
|
|
|
name: macos_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
|
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_macos_continuous.yml"
|
2023-03-16 07:31:46 +03:00
|
|
|
- "assets/fonts/**/*"
|
|
|
|
- "assets/icon/*"
|
2023-03-16 10:05:00 +03:00
|
|
|
- "assets/macos/**/*"
|
2023-03-16 07:31:46 +03:00
|
|
|
- "ci/deploy.sh"
|
2023-03-16 10:05:00 +03:00
|
|
|
- "ci/macos-entitlement.plist"
|
2023-03-24 16:49:37 +03:00
|
|
|
- "ci/tag-name.sh"
|
2023-03-16 07:31:46 +03:00
|
|
|
- "get-deps"
|
2020-02-12 21:55:44 +03:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2021-08-18 07:06:12 +03:00
|
|
|
runs-on: "macos-11"
|
2021-10-03 07:25:47 +03:00
|
|
|
|
2022-02-15 18:58:57 +03:00
|
|
|
env:
|
|
|
|
BUILD_REASON: "Schedule"
|
2022-06-25 21:40:47 +03:00
|
|
|
MACOSX_DEPLOYMENT_TARGET: "10.9"
|
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"
|
2023-09-11 06:50:45 +03:00
|
|
|
uses: actions/checkout@v4
|
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
|
|
|
- name: "Install Rust (ARM)"
|
|
|
|
shell: bash
|
2022-02-15 18:58:57 +03:00
|
|
|
run: "rustup target add aarch64-apple-darwin"
|
2021-09-21 16:24:52 +03:00
|
|
|
- name: "Install System Deps"
|
|
|
|
shell: bash
|
2023-03-22 06:01:57 +03:00
|
|
|
run: "env CI=yes PATH=$PATH ./get-deps"
|
2021-09-21 16:24:52 +03:00
|
|
|
- name: "Build (Release mode Intel)"
|
|
|
|
shell: bash
|
2022-02-15 18:58:57 +03:00
|
|
|
run: "cargo build --target x86_64-apple-darwin --all --release"
|
2021-09-21 16:24:52 +03:00
|
|
|
- name: "Build (Release mode ARM)"
|
|
|
|
shell: bash
|
2022-02-15 18:58:57 +03:00
|
|
|
run: "cargo build --target aarch64-apple-darwin --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: "macos"
|
2023-07-13 18:14:02 +03:00
|
|
|
- name: "Test (Release mode)"
|
2021-09-21 16:24:52 +03:00
|
|
|
shell: bash
|
2023-07-13 18:14:02 +03:00
|
|
|
run: "cargo nextest run --all --release --no-fail-fast --target=x86_64-apple-darwin"
|
2021-09-21 16:24:52 +03:00
|
|
|
- name: "Package"
|
2021-11-22 21:27:14 +03:00
|
|
|
env:
|
2022-06-25 21:40:47 +03:00
|
|
|
MACOS_APPLEID: ${{ secrets.MACOS_APPLEID }}
|
|
|
|
MACOS_APP_PW: ${{ secrets.MACOS_APP_PW }}
|
2021-11-22 21:27:14 +03:00
|
|
|
MACOS_CERT: ${{ secrets.MACOS_CERT }}
|
2021-11-23 06:25:14 +03:00
|
|
|
MACOS_CERT_PW: ${{ secrets.MACOS_CERT_PW }}
|
2021-11-22 21:27:14 +03:00
|
|
|
MACOS_TEAM_ID: ${{ secrets.MACOS_TEAM_ID }}
|
2021-09-21 16:24:52 +03:00
|
|
|
shell: bash
|
2022-02-15 18:58:57 +03:00
|
|
|
run: "bash ci/deploy.sh"
|
2021-12-07 05:37:33 +03:00
|
|
|
- name: "Upload artifact"
|
2022-04-11 04:36:34 +03:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-12-07 05:37:33 +03:00
|
|
|
with:
|
|
|
|
name: "macos"
|
|
|
|
path: "WezTerm-*.zip"
|
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
|
2022-02-15 18:58:57 +03:00
|
|
|
|
2021-12-08 20:14:08 +03:00
|
|
|
steps:
|
2021-12-08 21:19:00 +03:00
|
|
|
- name: "checkout repo"
|
2023-09-11 06:50:45 +03:00
|
|
|
uses: actions/checkout@v4
|
2021-12-08 20:14:08 +03:00
|
|
|
- name: "Download artifact"
|
2022-04-11 04:36:34 +03:00
|
|
|
uses: actions/download-artifact@v3
|
2021-12-08 20:14:08 +03:00
|
|
|
with:
|
|
|
|
name: "macos"
|
2022-07-25 18:39:24 +03:00
|
|
|
- name: "Checksum"
|
|
|
|
shell: bash
|
|
|
|
run: "for f in WezTerm-*.zip ; do sha256sum $f > $f.sha256 ; done"
|
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
|
2022-07-25 18:39:24 +03:00
|
|
|
run: "bash ci/retry.sh gh release upload --clobber nightly WezTerm-*.zip *.sha256"
|