1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-18 10:52:16 +03:00
wezterm/.github/workflows/gen_ubuntu16.yml

89 lines
2.2 KiB
YAML
Raw Normal View History

2020-02-13 00:36:31 +03:00
name: ubuntu16
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
strategy:
fail-fast: false
runs-on: "ubuntu-16.04"
steps:
- name: "Update APT"
shell: bash
2020-06-20 07:46:33 +03:00
run: "sudo -n apt update"
- name: "Install git"
shell: bash
run: "sudo -n apt-get install -y git"
- name: "checkout repo"
uses: actions/checkout@v2
with:
submodules: "recursive"
- name: "Fetch tags"
shell: bash
run: "git fetch --depth=1 origin +refs/tags/*:refs/tags/*"
- name: "Fetch tag/branch history"
shell: bash
run: "git fetch --prune --unshallow"
- name: "Install Rust"
uses: actions-rs/toolchain@v1
with:
profile: "minimal"
toolchain: "stable"
override: true
components: "rustfmt"
- name: "Cache cargo registry"
2020-10-10 07:02:00 +03:00
uses: actions/cache@v2
with:
path: "~/.cargo/registry"
key: "ubuntu16-None-1-${{ hashFiles('Cargo.lock') }}-cargo-registry"
- name: "Cache cargo index"
2020-10-10 07:02:00 +03:00
uses: actions/cache@v2
with:
path: "~/.cargo/git"
key: "ubuntu16-None-1-${{ hashFiles('Cargo.lock') }}-cargo-index"
- name: "Cache cargo build"
2020-10-10 07:02:00 +03:00
uses: actions/cache@v2
with:
path: "target"
key: "ubuntu16-None-1-${{ hashFiles('Cargo.lock') }}-cargo-build-target"
- name: "Install System Deps"
shell: bash
run: "sudo -n ./get-deps"
- name: "Check formatting"
shell: bash
run: "cargo fmt --all -- --check"
- 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: "Build AppImage"
shell: bash
run: "bash ci/appimage.sh"
- name: "Move Package for artifact upload"
shell: bash
run: |
mkdir pkg_
mv *.deb *.xz pkg_
2020-05-05 10:03:07 +03:00
mv *.AppImage *.zsync pkg_
- name: "Upload artifact"
uses: actions/upload-artifact@master
with:
name: "ubuntu16"
path: "pkg_"