2020-03-23 16:59:46 +03:00
|
|
|
name: CI
|
2020-03-23 16:53:38 +03:00
|
|
|
|
|
|
|
on:
|
2020-03-23 20:39:16 +03:00
|
|
|
schedule:
|
|
|
|
- cron: '0 2 * * *' # run at 2 AM UTC
|
2020-03-23 16:53:38 +03:00
|
|
|
push:
|
2020-03-30 20:07:08 +03:00
|
|
|
branches: [ '*' ]
|
2020-03-23 16:53:38 +03:00
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2020-03-23 20:33:24 +03:00
|
|
|
strategy:
|
2020-08-17 22:02:11 +03:00
|
|
|
fail-fast: false
|
2020-03-23 20:33:24 +03:00
|
|
|
matrix:
|
2020-07-21 10:24:28 +03:00
|
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
2021-03-30 15:16:50 +03:00
|
|
|
rust: [nightly, stable, '1.50']
|
2020-03-23 20:33:24 +03:00
|
|
|
runs-on: ${{ matrix.os }}
|
2020-08-28 11:52:24 +03:00
|
|
|
continue-on-error: ${{ matrix.rust == 'nightly' }}
|
2020-03-23 20:39:16 +03:00
|
|
|
|
2020-03-23 16:53:38 +03:00
|
|
|
steps:
|
2020-03-27 02:27:07 +03:00
|
|
|
- uses: actions/checkout@v2
|
2020-06-06 20:24:48 +03:00
|
|
|
|
2020-11-07 23:39:57 +03:00
|
|
|
- name: Restore cargo cache
|
|
|
|
uses: actions/cache@v2
|
|
|
|
env:
|
2020-11-07 23:49:02 +03:00
|
|
|
cache-name: ci
|
2020-11-07 23:39:57 +03:00
|
|
|
with:
|
2020-11-07 23:49:02 +03:00
|
|
|
path: |
|
|
|
|
~/.cargo/registry
|
|
|
|
~/.cargo/git
|
2020-11-08 01:47:03 +03:00
|
|
|
~/.cargo/bin
|
2020-11-07 23:49:02 +03:00
|
|
|
target
|
|
|
|
key: ${{ matrix.os }}-${{ env.cache-name }}-${{ matrix.rust }}-${{ hashFiles('Cargo.lock') }}
|
2020-11-07 23:39:57 +03:00
|
|
|
|
2020-11-08 02:02:11 +03:00
|
|
|
- name: MacOS Workaround
|
|
|
|
if: matrix.os == 'macos-latest'
|
|
|
|
run: cargo clean --locked -p serde_derive -p thiserror
|
|
|
|
|
2020-06-06 20:24:48 +03:00
|
|
|
- name: Install Rust
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2020-08-28 11:52:24 +03:00
|
|
|
toolchain: ${{ matrix.rust }}
|
|
|
|
default: true
|
2020-06-06 20:24:48 +03:00
|
|
|
profile: minimal
|
|
|
|
components: clippy
|
|
|
|
|
2020-04-15 17:36:40 +03:00
|
|
|
- name: Build Debug
|
2020-06-06 20:24:48 +03:00
|
|
|
run: |
|
|
|
|
cargo build
|
|
|
|
|
2020-03-23 16:53:38 +03:00
|
|
|
- name: Run tests
|
2020-04-13 11:23:55 +03:00
|
|
|
run: make test
|
2020-06-06 20:24:48 +03:00
|
|
|
|
2020-03-27 02:16:57 +03:00
|
|
|
- name: Run clippy
|
2020-04-23 20:48:30 +03:00
|
|
|
run: |
|
|
|
|
make clippy
|
2020-07-21 10:24:28 +03:00
|
|
|
|
2020-04-15 17:36:40 +03:00
|
|
|
- name: Build Release
|
|
|
|
run: make build-release
|
2020-04-05 16:29:41 +03:00
|
|
|
|
2021-04-19 19:20:21 +03:00
|
|
|
- name: Binary Size (unix)
|
|
|
|
if: matrix.os != 'windows-latest'
|
2021-04-19 19:16:59 +03:00
|
|
|
run: |
|
|
|
|
ls -l ./target/release/gitui
|
2021-04-19 19:20:21 +03:00
|
|
|
|
|
|
|
- name: Binary Size (win)
|
|
|
|
if: matrix.os == 'windows-latest'
|
|
|
|
run: |
|
|
|
|
ls -l ./target/release/gitui.exe
|
2021-04-19 19:16:59 +03:00
|
|
|
|
2020-10-26 04:11:37 +03:00
|
|
|
- name: Build MSI (windows)
|
2020-10-26 03:18:04 +03:00
|
|
|
if: matrix.os == 'windows-latest'
|
2020-10-26 04:11:37 +03:00
|
|
|
run: |
|
|
|
|
cargo install cargo-wix
|
2020-10-28 02:14:50 +03:00
|
|
|
cargo wix --no-build --nocapture --output ./target/wix/gitui.msi
|
|
|
|
ls -l ./target/wix/gitui.msi
|
2020-10-26 03:18:04 +03:00
|
|
|
|
2020-04-16 14:03:55 +03:00
|
|
|
build-linux-musl:
|
|
|
|
runs-on: ubuntu-latest
|
2021-03-30 15:16:50 +03:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
rust: [nightly, stable, '1.50']
|
|
|
|
continue-on-error: ${{ matrix.rust == 'nightly' }}
|
2020-04-16 14:03:55 +03:00
|
|
|
steps:
|
2020-09-02 03:08:41 +03:00
|
|
|
- uses: actions/checkout@master
|
2020-06-06 20:24:48 +03:00
|
|
|
- name: Install Rust
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2021-03-30 15:16:50 +03:00
|
|
|
toolchain: ${{ matrix.rust }}
|
2020-06-06 20:24:48 +03:00
|
|
|
profile: minimal
|
2021-03-30 15:16:50 +03:00
|
|
|
default: true
|
2020-06-06 20:24:48 +03:00
|
|
|
target: x86_64-unknown-linux-musl
|
2020-04-16 14:03:55 +03:00
|
|
|
- name: Setup MUSL
|
|
|
|
run: |
|
|
|
|
sudo apt-get -qq install musl-tools
|
|
|
|
- name: Build Debug
|
2020-09-01 02:36:38 +03:00
|
|
|
run: |
|
|
|
|
make build-linux-musl-debug
|
|
|
|
./target/x86_64-unknown-linux-musl/debug/gitui --version
|
2020-04-16 14:03:55 +03:00
|
|
|
- name: Build Release
|
|
|
|
run: |
|
2020-09-01 02:36:38 +03:00
|
|
|
make build-linux-musl-release
|
|
|
|
./target/x86_64-unknown-linux-musl/release/gitui --version
|
2021-04-19 19:16:59 +03:00
|
|
|
ls -l ./target/x86_64-unknown-linux-musl/release/gitui
|
2020-09-02 03:08:41 +03:00
|
|
|
- name: Test
|
|
|
|
run: |
|
|
|
|
make test-linux-musl
|
2020-04-16 14:03:55 +03:00
|
|
|
|
2020-04-05 16:29:41 +03:00
|
|
|
rustfmt:
|
|
|
|
name: Rustfmt
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
|
|
|
- name: Install Rust
|
2020-06-06 20:24:48 +03:00
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: stable
|
|
|
|
components: rustfmt
|
2020-04-15 19:35:38 +03:00
|
|
|
- run: cargo fmt -- --check
|
|
|
|
|
|
|
|
sec:
|
|
|
|
name: Security audit
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions-rs/audit-check@v1
|
|
|
|
with:
|
2020-05-13 19:15:17 +03:00
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
log-test:
|
|
|
|
name: Changelog Test
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
|
|
|
- name: Extract release notes
|
|
|
|
id: extract_release_notes
|
|
|
|
uses: ffurrer2/extract-release-notes@v1
|
|
|
|
with:
|
|
|
|
release_notes_file: ./release-notes.txt
|
|
|
|
- uses: actions/upload-artifact@v1
|
|
|
|
with:
|
2020-06-06 20:44:57 +03:00
|
|
|
name: release-notes.txt
|
2020-11-07 23:49:02 +03:00
|
|
|
path: ./release-notes.txt
|