Skip to content

github: actions: Add CI tests for push #2

github: actions: Add CI tests for push

github: actions: Add CI tests for push #2

Workflow file for this run

name: Python Containers
on:
- push
jobs:
python3-debug:
runs-on: ubuntu-latest
name: Python3 Container
strategy:
matrix:
project:
- {
name: python3Console,
container: python3-console
}
steps:
- uses: actions/checkout@v3
- name: Build ${{ matrix.project.folder }} Dockerfile
shell: pwsh
env:
PROJECT_FOLDER: ${{ matrix.project.folder }}
PROJECT_CONTAINER: ${{ matrix.project.container }}
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-arm64