diff --git a/.github/workflows/rust-linux.yml b/.github/workflows/rust-linux.yml new file mode 100644 index 00000000..a3ff1ae8 --- /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 00000000..d4e2e681 --- /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 00000000..d34ebf35 --- /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