From 7976320ba3fb279275341502d33eb44c0542fdcd Mon Sep 17 00:00:00 2001 From: Nilstrieb <48135649+Nilstrieb@users.noreply.github.com> Date: Sun, 3 Apr 2022 15:06:42 +0200 Subject: [PATCH] try to fix ci --- .github/workflows/rust.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 053eaa2..d9b0f0d 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -1,5 +1,3 @@ -# adapted from https://github.com/thomcc/arcstr/blob/main/.github/workflows/ci.yml - name: CI on: @@ -7,11 +5,16 @@ on: branches: - main pull_request: + branches: + - main + schedule: + - cron: "00 01 * * *" env: RUST_BACKTRACE: 1 jobs: + # Test on stable and MSRV test: name: Test Rust - ${{ matrix.build }} runs-on: ${{ matrix.os }} @@ -65,6 +68,7 @@ jobs: os: ubuntu-latest rust: stable target: i686-unknown-linux-gnu + # These should prob. be more generic arm targets and not android. - build: arm32 os: ubuntu-latest rust: stable @@ -82,6 +86,10 @@ jobs: os: ubuntu-latest rust: stable target: mips64-unknown-linux-gnuabi64 + - build: riscv + os: ubuntu-latest + rust: stable + target: riscv64gc-unknown-linux-gnu steps: - uses: actions/checkout@v2