Sebastian Schmidt
5 years ago
3 changed files with 95 additions and 0 deletions
@ -0,0 +1,34 @@ |
|||||
|
name: build-linux |
||||
|
|
||||
|
on: [push] |
||||
|
|
||||
|
jobs: |
||||
|
build: |
||||
|
|
||||
|
runs-on: ubuntu-latest |
||||
|
|
||||
|
steps: |
||||
|
- uses: actions/checkout@v1 |
||||
|
- name: install dependencies |
||||
|
run: sudo apt update && sudo apt install --no-install-recommends openssl ca-certificates curl sqlite3 |
||||
|
- name: Cache |
||||
|
uses: actions/cache@v1.0.3 |
||||
|
with: |
||||
|
path: target |
||||
|
key: ${{ runner.os }} |
||||
|
- name: Install latest nightly |
||||
|
uses: actions-rs/toolchain@v1 |
||||
|
with: |
||||
|
toolchain: nightly |
||||
|
override: true |
||||
|
profile: minimal |
||||
|
target: x86_64-unknown-linux-gnu |
||||
|
- name: Build x86_64-unknown-linux-gnu |
||||
|
run: cargo build --verbose --features sqlite --release --target x86_64-unknown-linux-gnu |
||||
|
- name: Run tests |
||||
|
run: cargo test --features sqlite |
||||
|
- name: Upload linux artifact |
||||
|
uses: actions/upload-artifact@v1.0.0 |
||||
|
with: |
||||
|
name: x86_64-unknown-linux-gnu-bitwarden_rs |
||||
|
path: target/x86_64-unknown-linux-gnu/release/bitwarden_rs |
@ -0,0 +1,30 @@ |
|||||
|
name: build-mac |
||||
|
|
||||
|
on: [push] |
||||
|
|
||||
|
jobs: |
||||
|
build: |
||||
|
|
||||
|
runs-on: macos-latest |
||||
|
|
||||
|
steps: |
||||
|
- uses: actions/checkout@v1 |
||||
|
- name: Cache |
||||
|
uses: actions/cache@v1.0.3 |
||||
|
with: |
||||
|
path: target |
||||
|
key: ${{ runner.os }} |
||||
|
- name: Install latest nightly |
||||
|
uses: actions-rs/toolchain@v1 |
||||
|
with: |
||||
|
toolchain: nightly |
||||
|
override: true |
||||
|
profile: minimal |
||||
|
target: x86_64-apple-darwin |
||||
|
- name: Build x86_64-apple-darwin |
||||
|
run: cargo build --verbose --features sqlite --release --target x86_64-apple-darwin |
||||
|
- name: Upload macOS artifact |
||||
|
uses: actions/upload-artifact@v1.0.0 |
||||
|
with: |
||||
|
name: x86_64-apple-darwin-bitwarden_rs |
||||
|
path: target/x86_64-apple-darwin/release/bitwarden_rs |
@ -0,0 +1,31 @@ |
|||||
|
name: build-windows |
||||
|
|
||||
|
on: [push] |
||||
|
|
||||
|
jobs: |
||||
|
build: |
||||
|
|
||||
|
runs-on: windows-latest |
||||
|
|
||||
|
steps: |
||||
|
- uses: actions/checkout@v1 |
||||
|
- name: install dependencies |
||||
|
run: choco install sqlite openssl |
||||
|
- name: Install latest nightly |
||||
|
uses: actions-rs/toolchain@v1 |
||||
|
with: |
||||
|
toolchain: nightly |
||||
|
override: true |
||||
|
profile: minimal |
||||
|
- name: Cache |
||||
|
uses: actions/cache@v1.0.3 |
||||
|
with: |
||||
|
path: target |
||||
|
key: ${{ runner.os }} |
||||
|
- name: Build |
||||
|
run: cargo.exe build --verbose --features sqlite --release |
||||
|
- name: Upload windows artifact |
||||
|
uses: actions/upload-artifact@v1.0.0 |
||||
|
with: |
||||
|
name: x86_64-pc-windows-bitwarden_rs |
||||
|
path: target/release/bitwarden_rs.exe |
Loading…
Reference in new issue