2020-05-03 21:21:58 +03:00
|
|
|
name: ubuntu18
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
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"
|
2022-04-21 18:00:24 +03:00
|
|
|
- ".github/workflows/no-response.yml"
|
2021-09-21 16:24:52 +03:00
|
|
|
- ".github/ISSUE_TEMPLATE/*"
|
|
|
|
- "**/*.md"
|
2022-05-10 07:57:18 +03:00
|
|
|
- "**/*.markdown"
|
2020-05-03 21:21:58 +03:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: "ubuntu-18.04"
|
2021-10-03 07:25:47 +03:00
|
|
|
|
2022-02-15 18:58:57 +03:00
|
|
|
|
2020-05-03 21:21:58 +03:00
|
|
|
steps:
|
2021-09-21 16:24:52 +03:00
|
|
|
- name: "Update APT"
|
|
|
|
shell: bash
|
|
|
|
run: "sudo -n apt update"
|
|
|
|
- name: "Install git"
|
|
|
|
shell: bash
|
|
|
|
run: "sudo -n apt-get install -y git"
|
|
|
|
- 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"
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: "minimal"
|
|
|
|
toolchain: "stable"
|
|
|
|
override: true
|
|
|
|
components: "rustfmt"
|
|
|
|
env:
|
|
|
|
ACTIONS_ALLOW_UNSECURE_COMMANDS: "true"
|
|
|
|
- name: "Cache cargo"
|
2022-03-28 05:48:06 +03:00
|
|
|
uses: actions/cache@v3
|
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: "ubuntu18-None-2-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}-cargo"
|
|
|
|
- name: "Install System Deps"
|
|
|
|
shell: bash
|
|
|
|
run: "sudo -n env PATH=$PATH ./get-deps"
|
|
|
|
- name: "Build (Release mode)"
|
|
|
|
shell: bash
|
|
|
|
run: "cargo build --all --release"
|
|
|
|
- name: "Test (Release mode)"
|
|
|
|
shell: bash
|
|
|
|
run: "cargo test --all --release"
|
|
|
|
- name: "Package"
|
|
|
|
shell: bash
|
|
|
|
run: "bash ci/deploy.sh"
|
|
|
|
- name: "Source Tarball"
|
|
|
|
shell: bash
|
|
|
|
run: "bash ci/source-archive.sh"
|
|
|
|
- name: "Build AppImage"
|
|
|
|
shell: bash
|
|
|
|
run: "bash ci/appimage.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: "ubuntu18"
|
2021-12-09 05:57:25 +03:00
|
|
|
path: |
|
|
|
|
wezterm-*.deb
|
|
|
|
wezterm-*.xz
|
|
|
|
*src.tar.gz
|
|
|
|
*.AppImage
|
|
|
|
*.zsync
|