github: workflow: fix permissions on CI for ccpp and rust debug #206
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: Rust Debug Containers | |
on: | |
push: | |
branches: | |
- dev | |
- bookworm | |
jobs: | |
rust-debug: | |
runs-on: ubuntu-latest | |
container: | |
image: torizonextras/torizon-dev:dev | |
options: --user root | |
if: github.ref == 'refs/heads/bookworm' || github.ref == 'refs/heads/dev' | |
name: Rust Container Debug | |
strategy: | |
matrix: | |
project: | |
- folder: rustSlint | |
container: rust-slint | |
vendor: '{ "arch": "arm64", "torizon_arch": "aarch64" }' | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Get Host Absolute Workspace Path | |
run: | | |
echo "${{ github.workspace }}" >> abs-path | |
cat abs-path | |
- name: Build ${{ matrix.project.folder }} Dockerfile | |
shell: xonsh {0} | |
env: | |
PROJECT_FOLDER: ${{ matrix.project.folder }} | |
PROJECT_CONTAINER: ${{ matrix.project.container }} | |
VENDOR: ${{ matrix.project.vendor }} | |
DOCKER_LOGIN: localhost:5002 | |
run: | | |
import os | |
import json | |
$RAISE_SUBPROC_ERROR = True | |
$XONSH_SHOW_TRACEBACK = True | |
$UPDATE_OS_ENVIRON = True | |
vendor = json.loads(os.environ['VENDOR']) | |
$TORIZON_ARCH = vendor["torizon_arch"] | |
$PROJECT_ARCH = vendor["arch"] | |
xonsh ./scripts/create-from-template.xsh \ | |
@(f"{os.environ['GITHUB_WORKSPACE']}/{os.environ['PROJECT_FOLDER']}") \ | |
@(f"{os.environ['PROJECT_FOLDER']}CITest") \ | |
@(f"{os.environ['PROJECT_CONTAINER']}-ci-test") \ | |
@(os.environ['GITHUB_WORKSPACE']) \ | |
@(os.environ['PROJECT_FOLDER']) \ | |
"false" \ | |
"false" | |
cp "abs-path" @(f"{os.environ['GITHUB_WORKSPACE']}/{os.environ['PROJECT_FOLDER']}CITest") | |
os.chdir(f"{os.environ['GITHUB_WORKSPACE']}/{os.environ['PROJECT_FOLDER']}CITest") | |
with open(".vscode/settings.json", "r") as file: | |
settings_json = json.load(file) | |
settings_json["torizon_arch"] = os.environ['TORIZON_ARCH'] | |
with open(".vscode/settings.json", "w") as file: | |
json.dump(settings_json, file, indent=4) | |
# FIXME: this is bad, but it's the only to make it work here | |
chmod 777 . -R | |
xonsh ./.vscode/tasks.xsh run run-torizon-binfmt | |
xonsh ./.vscode/tasks.xsh run @(f"build-debug-{os.environ['PROJECT_ARCH']}") | |
xonsh ./.vscode/tasks.xsh run @(f"copy-debug-executable-{os.environ['PROJECT_ARCH']}") | |
xonsh ./.vscode/tasks.xsh run @(f"build-container-torizon-debug-{os.environ['PROJECT_ARCH']}") |