vw_small

Hardened fork of Vaultwarden (https://github.com/dani-garcia/vaultwarden) with fewer features.
git clone https://git.philomathiclife.com/repos/vw_small
Log | Files | Refs | README

commit 13eb276085435f60433a9b525b52caf0a7eb3537
parent 25454697130a2bcbb76f7f29cdf8d1d382de96c7
Author: Sebastian Schmidt <publicarray@users.noreply.github.com>
Date:   Sun, 22 Dec 2019 18:50:05 +1100

Create Github build Actions

Diffstat:
A.github/workflows/rust-linux.yml | 34++++++++++++++++++++++++++++++++++
A.github/workflows/rust-mac.yml | 30++++++++++++++++++++++++++++++
A.github/workflows/rust-win.yml | 31+++++++++++++++++++++++++++++++
3 files changed, 95 insertions(+), 0 deletions(-)

diff --git a/.github/workflows/rust-linux.yml b/.github/workflows/rust-linux.yml @@ -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 diff --git a/.github/workflows/rust-mac.yml b/.github/workflows/rust-mac.yml @@ -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 diff --git a/.github/workflows/rust-win.yml b/.github/workflows/rust-win.yml @@ -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