Merge pull request #89 from Thaumy/main #23
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: Check if Psh can build | |
on: | |
push: | |
pull_request: | |
env: | |
RUST_BACKTRACE: 1 | |
jobs: | |
build: | |
name: Build Check | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# we only need to support linux | |
os: [ubuntu-20.04, ubuntu-latest] | |
# TODO: do we want to support musl? | |
target: [x86_64-unknown-linux-gnu] | |
# make sure it runs on latest stable rust | |
toolchain: [stable] | |
env: | |
SCCACHE_GHA_ENABLED: "true" | |
RUSTC_WRAPPER: "sccache" | |
steps: | |
- uses: actions/checkout/@v4 | |
- name: Install Toolchain | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
components: clippy | |
- name: Show environment information | |
uses: ./.github/actions/show-env | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v3 | |
- name: Run sccache-cache | |
uses: mozilla-actions/[email protected] | |
- name: Build Psh | |
uses: ./.github/actions/build | |
with: | |
target: ${{ matrix.target }} | |
release: false |