mirror of
https://github.com/microsoft/regorus.git
synced 2026-08-05 02:16:11 +00:00
Use frozen and locked builds Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com>
27 lines
470 B
YAML
27 lines
470 B
YAML
name: bindings/no-std
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
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
|
|
|