mirror of
https://github.com/Noratrieb/stuff.git
synced 2026-01-14 16:35:08 +01:00
try to fix ci
This commit is contained in:
parent
583b3c3a86
commit
7976320ba3
1 changed files with 10 additions and 2 deletions
12
.github/workflows/rust.yml
vendored
12
.github/workflows/rust.yml
vendored
|
|
@ -1,5 +1,3 @@
|
||||||
# adapted from https://github.com/thomcc/arcstr/blob/main/.github/workflows/ci.yml
|
|
||||||
|
|
||||||
name: CI
|
name: CI
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
|
@ -7,11 +5,16 @@ on:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
pull_request:
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
schedule:
|
||||||
|
- cron: "00 01 * * *"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
RUST_BACKTRACE: 1
|
RUST_BACKTRACE: 1
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
# Test on stable and MSRV
|
||||||
test:
|
test:
|
||||||
name: Test Rust - ${{ matrix.build }}
|
name: Test Rust - ${{ matrix.build }}
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
@ -65,6 +68,7 @@ jobs:
|
||||||
os: ubuntu-latest
|
os: ubuntu-latest
|
||||||
rust: stable
|
rust: stable
|
||||||
target: i686-unknown-linux-gnu
|
target: i686-unknown-linux-gnu
|
||||||
|
# These should prob. be more generic arm targets and not android.
|
||||||
- build: arm32
|
- build: arm32
|
||||||
os: ubuntu-latest
|
os: ubuntu-latest
|
||||||
rust: stable
|
rust: stable
|
||||||
|
|
@ -82,6 +86,10 @@ jobs:
|
||||||
os: ubuntu-latest
|
os: ubuntu-latest
|
||||||
rust: stable
|
rust: stable
|
||||||
target: mips64-unknown-linux-gnuabi64
|
target: mips64-unknown-linux-gnuabi64
|
||||||
|
- build: riscv
|
||||||
|
os: ubuntu-latest
|
||||||
|
rust: stable
|
||||||
|
target: riscv64gc-unknown-linux-gnu
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue