-
Notifications
You must be signed in to change notification settings - Fork 25
52 lines (43 loc) · 1.43 KB
/
build-debug-ccpp.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: C/C++ Debug Containers
on:
push:
branches:
- dev
- bookworm
jobs:
ccpp-debug:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/bookworm' || github.ref == 'refs/heads/dev'
name: C/C++ Container Debug
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.debug
shell: pwsh
env:
PROJECT_FOLDER: ${{ matrix.project.folder }}
PROJECT_CONTAINER: ${{ matrix.project.container }}
PROJECT_ARCH: ${{ matrix.project.arch }}
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"
# TODO: this is bad, but it's the only way to make it work for now
chmod 777 . -R
./.vscode/tasks.ps1 run build-debug-${env:PROJECT_ARCH}
./.vscode/tasks.ps1 run build-container-torizon-debug-${env:PROJECT_ARCH}