2020-05-03 21:21:58 +03:00
|
|
|
|
|
|
|
name: ubuntu18
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
2021-02-04 08:51:01 +03:00
|
|
|
- main
|
2021-01-30 23:34:54 +03:00
|
|
|
paths-ignore:
|
2021-03-29 06:39:49 +03:00
|
|
|
- '.cirrus.yml'
|
2021-01-30 23:34:54 +03:00
|
|
|
- 'docs/*'
|
2021-02-07 20:59:10 +03:00
|
|
|
- 'ci/build-docs.sh'
|
|
|
|
- 'ci/generate-docs.py'
|
|
|
|
- 'ci/subst-release-info.py'
|
|
|
|
- '.github/workflows/pages.yml'
|
|
|
|
- '**/*.md'
|
2020-05-03 21:21:58 +03:00
|
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
runs-on: "ubuntu-18.04"
|
|
|
|
|
|
|
|
steps:
|
2020-06-20 07:28:05 +03:00
|
|
|
- name: "Update APT"
|
|
|
|
shell: bash
|
2020-06-20 07:46:33 +03:00
|
|
|
run: "sudo -n apt update"
|
2020-05-04 02:16:52 +03:00
|
|
|
- name: "Install git"
|
2020-05-03 21:21:58 +03:00
|
|
|
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"
|
2020-11-17 23:03:24 +03:00
|
|
|
uses: actions-rs/toolchain@v1
|
2020-05-03 21:21:58 +03:00
|
|
|
with:
|
|
|
|
profile: "minimal"
|
|
|
|
toolchain: "stable"
|
|
|
|
override: true
|
|
|
|
components: "rustfmt"
|
2020-11-17 04:28:37 +03:00
|
|
|
env:
|
|
|
|
ACTIONS_ALLOW_UNSECURE_COMMANDS: "true"
|
2020-10-10 17:29:17 +03:00
|
|
|
- name: "Cache cargo"
|
2021-04-19 19:24:48 +03:00
|
|
|
uses: actions/cache@v2.1.5
|
2020-05-03 21:21:58 +03:00
|
|
|
with:
|
2020-10-10 17:29:17 +03:00
|
|
|
path: |
|
|
|
|
~/.cargo/registry
|
|
|
|
~/.cargo/git
|
|
|
|
target
|
|
|
|
|
2020-10-10 19:25:11 +03:00
|
|
|
key: "ubuntu18-None-2-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}-cargo"
|
2020-05-03 21:21:58 +03:00
|
|
|
- name: "Install System Deps"
|
|
|
|
shell: bash
|
2021-03-29 06:33:32 +03:00
|
|
|
run: "sudo -n env PATH=$PATH ./get-deps"
|
2020-05-03 21:21:58 +03:00
|
|
|
- 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: "Move Package for artifact upload"
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
mkdir pkg_
|
|
|
|
mv *.deb *.xz pkg_
|
|
|
|
|
|
|
|
|
|
|
|
- name: "Upload artifact"
|
|
|
|
uses: actions/upload-artifact@master
|
|
|
|
with:
|
|
|
|
name: "ubuntu18"
|
|
|
|
path: "pkg_"
|