2020-05-04 02:16:52 +03:00
|
|
|
name: ubuntu20.04_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"
|
|
|
|
- ".github/ISSUE_TEMPLATE/*"
|
|
|
|
- "**/*.md"
|
2020-05-04 02:16:52 +03:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2021-12-06 20:37:54 +03:00
|
|
|
runs-on: "ubuntu-latest"
|
|
|
|
container: "ubuntu:20.04"
|
2020-05-04 02:16:52 +03:00
|
|
|
steps:
|
2021-12-06 20:37:54 +03:00
|
|
|
- name: "set APT to non-interactive"
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
export BUILD_REASON=Schedule
|
|
|
|
echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
|
2021-09-21 16:24:52 +03:00
|
|
|
- name: "Update APT"
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
export BUILD_REASON=Schedule
|
2021-12-06 20:37:54 +03:00
|
|
|
apt update
|
2021-09-21 16:24:52 +03:00
|
|
|
- name: "Install git"
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
export BUILD_REASON=Schedule
|
2021-12-06 20:37:54 +03:00
|
|
|
apt-get install -y git
|
|
|
|
- name: "Install curl"
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
export BUILD_REASON=Schedule
|
|
|
|
apt-get install -y curl
|
2021-12-06 20:40:51 +03:00
|
|
|
- name: "Update APT"
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
export BUILD_REASON=Schedule
|
|
|
|
apt update
|
2021-12-06 20:37:54 +03:00
|
|
|
- name: "Ensure /run/sshd exists"
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
export BUILD_REASON=Schedule
|
|
|
|
mkdir -p /run/sshd
|
|
|
|
- name: "Install openssh-server"
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
export BUILD_REASON=Schedule
|
|
|
|
apt-get install -y openssh-server
|
2021-09-21 16:24:52 +03:00
|
|
|
- name: "checkout repo"
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
submodules: "recursive"
|
|
|
|
- name: "Install Rust"
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: "minimal"
|
|
|
|
toolchain: "stable"
|
|
|
|
override: true
|
|
|
|
components: "rustfmt"
|
|
|
|
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: "ubuntu20.04-None-2-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}-cargo"
|
|
|
|
- name: "Install System Deps"
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
export BUILD_REASON=Schedule
|
2021-12-06 20:37:54 +03:00
|
|
|
env PATH=$PATH ./get-deps
|
2021-09-21 16:24:52 +03:00
|
|
|
- name: "Build (Release mode)"
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
export BUILD_REASON=Schedule
|
|
|
|
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: "ubuntu20.04"
|
|
|
|
path: |
|
|
|
|
wezterm-*.deb
|
|
|
|
wezterm-*.xz
|
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"
|
|
|
|
uses: actions/checkout@v2
|
2021-12-08 20:14:08 +03:00
|
|
|
- name: "Download artifact"
|
|
|
|
uses: actions/download-artifact@v2
|
|
|
|
with:
|
|
|
|
name: "ubuntu20.04"
|
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-*.deb wezterm-*.xz"
|