2020-02-12 21:55:44 +03:00
|
|
|
|
2020-02-13 00:36:31 +03:00
|
|
|
name: macos
|
2020-02-12 21:55:44 +03:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
runs-on: "macos-latest"
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- 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 MACOSX_DEPLOYMENT_TARGET=10.9
|
|
|
|
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
|
|
|
|
|
|
|
|
|
|
|
|
- name: "Fetch tag/branch history"
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
export MACOSX_DEPLOYMENT_TARGET=10.9
|
|
|
|
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: "Install System Deps"
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
export MACOSX_DEPLOYMENT_TARGET=10.9
|
2020-05-04 02:16:52 +03:00
|
|
|
./get-deps
|
2020-02-12 21:55:44 +03:00
|
|
|
|
|
|
|
|
|
|
|
- name: "Check formatting"
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
export MACOSX_DEPLOYMENT_TARGET=10.9
|
|
|
|
cargo fmt --all -- --check
|
|
|
|
|
|
|
|
|
|
|
|
- name: "Build (Release mode)"
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
export MACOSX_DEPLOYMENT_TARGET=10.9
|
|
|
|
cargo build --all --release
|
|
|
|
|
|
|
|
|
|
|
|
- name: "Test (Release mode)"
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
export MACOSX_DEPLOYMENT_TARGET=10.9
|
|
|
|
cargo test --all --release
|
|
|
|
|
|
|
|
|
|
|
|
- name: "Package"
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
export MACOSX_DEPLOYMENT_TARGET=10.9
|
|
|
|
bash ci/deploy.sh
|
|
|
|
|
|
|
|
|
|
|
|
- name: "Move Package for artifact upload"
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
export MACOSX_DEPLOYMENT_TARGET=10.9
|
|
|
|
mkdir pkg_
|
|
|
|
mv *.zip pkg_
|
|
|
|
|
2020-05-03 21:21:58 +03:00
|
|
|
|
2020-02-12 21:55:44 +03:00
|
|
|
|
|
|
|
- name: "Upload artifact"
|
|
|
|
uses: actions/upload-artifact@master
|
|
|
|
with:
|
|
|
|
name: "macos"
|
|
|
|
path: "pkg_"
|