Skip to content

Fix memory ownership issue in the init function #104

Fix memory ownership issue in the init function

Fix memory ownership issue in the init function #104

Workflow file for this run

# Builds nrfxlib for the nRF9160 (a Cortex-M33)
on: [push, pull_request]
name: Cross-compile
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
target:
- thumbv8m.main-none-eabihf
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: ${{ matrix.target }}
override: true
- uses: actions-rs/cargo@v1
with:
command: build
args: --release --target=${{ matrix.target }}