This commit is contained in:
parent
d170d240eb
commit
ae8a50fc31
1 changed files with 30 additions and 0 deletions
30
.forgejo/workflows/buildTest.yaml
Normal file
30
.forgejo/workflows/buildTest.yaml
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
name: Test build
|
||||||
|
jobs:
|
||||||
|
amd_check:
|
||||||
|
name: x86_64 Check
|
||||||
|
runs-on: [ self-hosted,x64 ]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: https://github.com/actions-rs/toolchain@v1
|
||||||
|
with:
|
||||||
|
profile: minimal
|
||||||
|
toolchain: stable
|
||||||
|
override: true
|
||||||
|
- uses: https://github.com/actions-rs/cargo@v1
|
||||||
|
with:
|
||||||
|
command: check
|
||||||
|
arm_check:
|
||||||
|
name: ARM64 Check
|
||||||
|
runs-on: [ self-hosted,arm64 ]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: https://github.com/actions-rs/toolchain@v1
|
||||||
|
with:
|
||||||
|
profile: minimal
|
||||||
|
toolchain: stable
|
||||||
|
override: true
|
||||||
|
- uses: https://github.com/actions-rs/cargo@v1
|
||||||
|
with:
|
||||||
|
command: check
|
Loading…
Add table
Reference in a new issue