cmake: Update DOTNET_SAMPLE_LANG option message #852
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: aarch64 Toolchain | |
on: [push, pull_request] | |
jobs: | |
# Building using the github runner environement directly. | |
aarch64: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
targets: [ | |
[aarch64], # bootlin | |
[aarch64be] # bootlin | |
] | |
fail-fast: false | |
env: | |
TARGET: ${{ matrix.targets[0] }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: make --directory=cmake ${TARGET}_build | |
- name: Test | |
run: make --directory=cmake ${TARGET}_test |