This repository has been archived by the owner on Aug 13, 2024. It is now read-only.
fix(ci): build the application in a subdirectory #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build portal | |
on: | |
push: | |
pull_request: | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
rust-toolchain: [stable] | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
working-directory: backend | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ matrix.rust-toolchain }} | |
components: rustfmt | |
override: true | |
- name: Install Build Essentials | |
run: sudo apt-get install build-essential mingw-w64 gcc | |
- name: Verify versions | |
run: rustc --version && rustup --version && cargo --version | |
- name: Cache build artifacts | |
id: cache-cargo | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: ${{ runner.os }}-cargo-${{ matrix.rust-toolchain }} | |
- name: Build Portal | |
run: cargo build --release --all-features |