2021-01-24 17:02:12 +00:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
2021-01-24 17:03:06 +00:00
|
|
|
push:
|
2021-05-11 07:48:32 +00:00
|
|
|
branches:
|
|
|
|
- '**'
|
2021-01-24 17:03:06 +00:00
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
2021-01-24 17:02:12 +00:00
|
|
|
|
|
|
|
env:
|
2021-01-24 17:03:06 +00:00
|
|
|
CARGO_TERM_COLOR: always
|
2021-01-24 17:02:12 +00:00
|
|
|
|
|
|
|
jobs:
|
2021-01-24 17:03:06 +00:00
|
|
|
build:
|
2021-01-24 17:02:12 +00:00
|
|
|
|
2021-01-24 17:03:06 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, windows-latest]
|
2022-01-06 15:00:50 +00:00
|
|
|
features: ["--all-features"]
|
2021-01-24 17:02:12 +00:00
|
|
|
|
2021-01-24 17:03:06 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install Rust toolchain
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2021-05-17 16:22:34 +00:00
|
|
|
profile: minimal
|
2021-01-24 17:03:06 +00:00
|
|
|
toolchain: stable
|
2021-01-24 17:02:12 +00:00
|
|
|
|
2021-01-24 17:03:06 +00:00
|
|
|
- name: Cache cargo directories
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cargo/registry
|
|
|
|
~/.cargo/git
|
|
|
|
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
2021-01-24 17:02:12 +00:00
|
|
|
|
2021-01-24 17:03:06 +00:00
|
|
|
- name: Cache cargo target dir
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: target
|
|
|
|
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
- name: Build
|
2021-04-17 13:40:08 +00:00
|
|
|
run: cargo build --release ${{ matrix.features }} --verbose
|
2021-01-24 17:18:00 +00:00
|
|
|
- name: Archive artifacts
|
|
|
|
uses: actions/upload-artifact@v2
|
2021-05-13 10:11:52 +00:00
|
|
|
if: matrix.features == '--all-features'
|
2021-01-24 17:18:00 +00:00
|
|
|
with:
|
|
|
|
name: Binaries
|
|
|
|
path: |
|
|
|
|
target/release/KIT-ILIAS-downloader
|
|
|
|
target/release/KIT-ILIAS-downloader.exe
|