README: Update info about Torizon IDE Extension (stable now, not labs) #13
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: C/C++ Containers | |
on: | |
- push | |
jobs: | |
ccpp: | |
runs-on: ubuntu-latest | |
name: C/C++ Container | |
strategy: | |
matrix: | |
project: | |
- folder: cppQML | |
container: cpp-qml | |
arch: arm64 | |
- folder: cppSlint | |
container: cpp-slint | |
arch: arm64 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build ${{ matrix.project.folder }} Dockerfile | |
shell: pwsh | |
env: | |
PROJECT_FOLDER: ${{ matrix.project.folder }} | |
PROJECT_CONTAINER: ${{ matrix.project.container }} | |
PROJECT_ARCH: ${{ matrix.project.arch }} | |
DOCKER_LOGIN: localhost:5002 | |
run: | | |
docker run --rm --privileged torizon/binfmt | |
scripts/createFromTemplate.ps1 ` | |
$env:GITHUB_WORKSPACE/$env:PROJECT_FOLDER ` | |
"${env:PROJECT_FOLDER}CITest" ` | |
"${env:PROJECT_CONTAINER}-ci-test" ` | |
$env:GITHUB_WORKSPACE ` | |
$env:PROJECT_FOLDER ` | |
false ` | |
false | |
cd "${env:GITHUB_WORKSPACE}/${env:PROJECT_FOLDER}CITest" | |
./.vscode/tasks.ps1 run build-container-torizon-release-${env:PROJECT_ARCH} |