From 13eb276085435f60433a9b525b52caf0a7eb3537 Mon Sep 17 00:00:00 2001 From: Sebastian Schmidt Date: Sun, 22 Dec 2019 18:50:05 +1100 Subject: [PATCH] Create Github build Actions --- .github/workflows/rust-linux.yml | 34 ++++++++++++++++++++++++++++++++ .github/workflows/rust-mac.yml | 30 ++++++++++++++++++++++++++++ .github/workflows/rust-win.yml | 31 +++++++++++++++++++++++++++++ 3 files changed, 95 insertions(+) create mode 100644 .github/workflows/rust-linux.yml create mode 100644 .github/workflows/rust-mac.yml create mode 100644 .github/workflows/rust-win.yml diff --git a/.github/workflows/rust-linux.yml b/.github/workflows/rust-linux.yml new file mode 100644 index 0000000..a3ff1ae --- /dev/null +++ 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 new file mode 100644 index 0000000..d4e2e68 --- /dev/null +++ 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 new file mode 100644 index 0000000..d34ebf3 --- /dev/null +++ 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