#oak-6 #2467
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: ci-build | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
pull_request: | |
branches: | |
- '**' | |
workflow_dispatch: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
if: "!contains(github.event.commits[0].message, '[skip ci]')" | |
runs-on: [self-hosted, normal] | |
steps: | |
- name: Check to latest commit | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Install toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: nightly-2023-05-22 | |
components: rustfmt,clippy | |
target: wasm32-unknown-unknown | |
override: true | |
default: true | |
- name: Check All | |
run: make check-all | |
- name: Cargo clippy | |
run: | | |
make clippy | |
- name: Test All | |
run: | | |
make test-all | |
- name: Inform buddies online | |
uses: 8398a7/action-slack@v3 | |
if: always() && (github.event_name == 'pull_request' && github.event.pull_request.draft == false) | |
with: | |
status: ${{ job.status }} | |
fields: repo,author,eventName,workflow,ref,commit | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_PULLREQUEST_WEBHOOK_URL }} | |
- name: clean runner workspace | |
run: | | |
rm -r * |