2023-03-16 19:15:46 +01:00
|
|
|
name: Master Build
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ "master" ]
|
2023-03-16 19:22:57 +01:00
|
|
|
pull_request:
|
|
|
|
branches: [ "master" ]
|
2023-03-16 19:15:46 +01:00
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
|
|
|
jobs:
|
2023-03-16 19:22:57 +01:00
|
|
|
build:
|
2023-03-16 19:32:09 +01:00
|
|
|
|
2023-03-16 19:22:57 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2023-03-18 10:27:34 +01:00
|
|
|
- name: Cache Cargo modules
|
|
|
|
id: cache-cargo
|
|
|
|
uses: actions/cache@v3
|
|
|
|
env:
|
|
|
|
cache-name: cache-cargo-target-debug
|
|
|
|
with:
|
|
|
|
path: target
|
|
|
|
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-${{ env.cache-name }}-
|
2023-03-16 19:22:57 +01:00
|
|
|
- name: Build
|
2023-03-16 19:32:09 +01:00
|
|
|
run: cargo build --verbose
|
|
|
|
- name: Run tests
|
2023-03-16 20:40:17 +01:00
|
|
|
run: cargo test --verbose -p schemsearch-lib
|
2023-03-16 19:32:09 +01:00
|
|
|
|
2023-03-18 10:27:34 +01:00
|
|
|
build-release:
|
2023-03-16 19:23:08 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2023-03-18 10:27:34 +01:00
|
|
|
- name: Cache Cargo modules
|
|
|
|
id: cache-cargo
|
|
|
|
uses: actions/cache@v3
|
|
|
|
env:
|
|
|
|
cache-name: cache-cargo-target-release
|
|
|
|
with:
|
|
|
|
path: target
|
|
|
|
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-${{ env.cache-name }}-
|
2023-03-16 19:23:08 +01:00
|
|
|
- name: Build
|
2023-03-16 20:40:17 +01:00
|
|
|
run: cargo build --verbose --release -p schemsearch-cli
|
2023-03-16 19:23:08 +01:00
|
|
|
- name: Upload a Build Artifact
|
|
|
|
uses: actions/upload-artifact@v3.1.2
|
|
|
|
with:
|
|
|
|
name: schemsearch-cli
|
|
|
|
path: target/release/schemsearch-cli
|