mirror of
https://github.com/microsoft/regorus.git
synced 2026-08-05 02:16:11 +00:00
Also schedule works to be run at 8:00 AM everyday. Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com>
30 lines
537 B
YAML
30 lines
537 B
YAML
name: bindings/no-std
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
schedule:
|
|
# Run at 8:00 AM every day
|
|
- cron: "0 8 * * *"
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Add no_std target
|
|
run: rustup target add thumbv7m-none-eabi
|
|
- name: Fetch
|
|
run: cargo fetch
|
|
- name: Build
|
|
run: cargo build -r --target thumbv7m-none-eabi --frozen
|
|
working-directory: ./tests/ensure_no_std
|
|
|