2020-02-12 21:55:44 +03:00
|
|
|
|
|
|
|
name: centos7_continuous
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: "10 * * * *"
|
|
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
runs-on: "ubuntu-latest"
|
|
|
|
container: "centos:7"
|
|
|
|
steps:
|
|
|
|
- name: "Cache Git installation"
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: "/usr/local/git"
|
2020-05-03 21:21:58 +03:00
|
|
|
key: "centos7-git-2.25.0"
|
2020-02-12 21:55:44 +03:00
|
|
|
- name: "Install Git from source"
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
export BUILD_REASON=Schedule
|
|
|
|
|
2020-05-03 21:21:58 +03:00
|
|
|
yum install -y wget curl-devel expat-devel gettext-devel openssl-devel zlib-devel gcc perl-ExtUtils-MakeMaker make
|
2020-02-12 21:55:44 +03:00
|
|
|
|
|
|
|
if test ! -x /usr/local/git/bin/git ; then
|
|
|
|
cd /tmp
|
2020-05-03 21:21:58 +03:00
|
|
|
wget https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.25.0.tar.gz
|
|
|
|
tar xzf git-2.25.0.tar.gz
|
|
|
|
cd git-2.25.0
|
2020-02-12 21:55:44 +03:00
|
|
|
make prefix=/usr/local/git install
|
|
|
|
fi
|
|
|
|
|
|
|
|
ln -s /usr/local/git/bin/git /usr/local/bin/git
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-05-04 02:16:52 +03:00
|
|
|
- name: "Install curl"
|
2020-05-03 21:21:58 +03:00
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
export BUILD_REASON=Schedule
|
|
|
|
yum install -y curl
|
|
|
|
|
|
|
|
|
2020-02-12 21:55:44 +03:00
|
|
|
- name: "checkout repo"
|
2020-05-03 21:21:58 +03:00
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
submodules: "recursive"
|
|
|
|
- name: "Fetch tags"
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
export BUILD_REASON=Schedule
|
|
|
|
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
|
|
|
|
|
|
|
|
|
|
|
|
- name: "Fetch tag/branch history"
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
export BUILD_REASON=Schedule
|
|
|
|
git fetch --prune --unshallow
|
|
|
|
|
|
|
|
|
2020-02-12 21:55:44 +03:00
|
|
|
- name: "Install Rust"
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: "minimal"
|
|
|
|
toolchain: "stable"
|
|
|
|
override: true
|
|
|
|
components: "rustfmt"
|
|
|
|
- name: "Cache cargo registry"
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: "~/.cargo/registry"
|
|
|
|
key: "centos7-None-${{ hashFiles('Cargo.lock') }}-cargo-registry"
|
|
|
|
- name: "Cache cargo index"
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: "~/.cargo/git"
|
|
|
|
key: "centos7-None-${{ hashFiles('Cargo.lock') }}-cargo-index"
|
|
|
|
- name: "Cache cargo build"
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: "target"
|
|
|
|
key: "centos7-None-${{ hashFiles('Cargo.lock') }}-cargo-build-target"
|
|
|
|
- name: "Install System Deps"
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
export BUILD_REASON=Schedule
|
2020-05-04 02:16:52 +03:00
|
|
|
./get-deps
|
2020-02-12 21:55:44 +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
|
|
|
|
|
|
|
|
|
|
|
|
- name: "Move RPM"
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
export BUILD_REASON=Schedule
|
2020-02-13 00:16:13 +03:00
|
|
|
mv ~/rpmbuild/RPMS/*/*.rpm wezterm-nightly-centos7.rpm
|
2020-02-12 21:55:44 +03:00
|
|
|
|
|
|
|
|
|
|
|
- name: "Upload to Nightly Release"
|
2020-02-15 02:53:32 +03:00
|
|
|
uses: wez/upload-release-assets@releases/v1
|
2020-02-12 21:55:44 +03:00
|
|
|
with:
|
|
|
|
files: "wezterm-*.rpm"
|
2020-02-13 00:32:05 +03:00
|
|
|
release-tag: "nightly"
|
2020-02-12 21:55:44 +03:00
|
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|