bitwarden_rs/.github/workflows/rust-mac.yml

62 lines
1.7 KiB
YAML
Raw Normal View History

2019-12-22 07:50:05 +00:00
name: build-mac
2019-12-24 23:20:00 +00:00
on: [push, pull_request]
2019-12-22 07:50:05 +00:00
jobs:
build:
runs-on: macos-latest
2019-12-24 23:20:00 +00:00
strategy:
matrix:
db-backend: [sqlite, mysql, postgresql]
2019-12-22 07:50:05 +00:00
steps:
- uses: actions/checkout@v1
2019-12-24 23:20:00 +00:00
- name: Install dependencies
2019-12-25 00:16:35 +00:00
run: brew install openssl sqlite libpq mysql
2019-12-24 23:20:00 +00:00
- name: Cache cargo registry
uses: actions/cache@v1.0.3
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo index
uses: actions/cache@v1.0.3
with:
path: ~/.cargo/git
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo build
2019-12-22 07:50:05 +00:00
uses: actions/cache@v1.0.3
with:
path: target
2019-12-24 23:20:00 +00:00
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
2019-12-22 07:50:05 +00:00
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
2019-12-24 23:20:00 +00:00
toolchain: nightly
override: true
profile: minimal
target: x86_64-apple-darwin
- name: Build
run: cargo build --verbose --features ${{ matrix.db-backend }} --release --target x86_64-apple-darwin
- name: Run tests
run: cargo test --features ${{ matrix.db-backend }}
2019-12-22 07:50:05 +00:00
- name: Upload macOS artifact
uses: actions/upload-artifact@v1.0.0
with:
2019-12-24 23:20:00 +00:00
name: x86_64-apple-darwin-${{ matrix.db-backend }}-bitwarden_rs
path: target/x86_64-apple-darwin/release/bitwarden_rs
- name: Release
2019-12-24 23:25:35 +00:00
uses: Shopify/upload-to-release@1.0.0
2019-12-24 23:20:00 +00:00
if: startsWith(github.ref, 'refs/tags/')
with:
name: x86_64-apple-darwin-${{ matrix.db-backend }}-bitwarden_rs
2019-12-22 07:50:05 +00:00
path: target/x86_64-apple-darwin/release/bitwarden_rs
2019-12-24 23:20:00 +00:00
repo-token: ${{ secrets.GITHUB_TOKEN }}