-
Notifications
You must be signed in to change notification settings - Fork 1
56 lines (56 loc) · 2.08 KB
/
toolchains-qnx-tests.yml
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
53
54
55
56
# *******************************************************************************
# Copyright (c) 2025 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License Version 2.0 which is available at
# https://www.apache.org/licenses/LICENSE-2.0
#
# SPDX-License-Identifier: Apache-2.0
# *******************************************************************************
name: Toolchains QNX Tests
on:
pull_request:
types: [opened, reopened, synchronize]
jobs:
toolchains-qnx-tests-build-all:
runs-on: ubuntu-latest
environment: workflow-approval
defaults:
run:
working-directory: ./tests
steps:
- name: Checkout repository
uses: actions/[email protected]
- name: Setup Bazel
uses: bazel-contrib/[email protected]
- name: Setup QNX License
env:
SCORE_QNX_LICENSE: ${{ secrets.SCORE_QNX_LICENSE }}
run: |
mkdir -p /opt/score_qnx/license
echo "${SCORE_QNX_LICENSE}" | base64 --decode > /opt/score_qnx/license/licenses
- name: Run build
env:
SCORE_QNX_USER: ${{ secrets.SCORE_QNX_USER }}
SCORE_QNX_PASSWORD: ${{ secrets.SCORE_QNX_PASSWORD }}
run: |
bazel build //... --config=x86_64-qnx --credential_helper=*.qnx.com=${{ github.workspace }}/tools/qnx_credential_helper.py
- name: Install qemu
run: |
sudo apt install -y qemu-system
- name: Enable KVM group perms
run: |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
sudo udevadm control --reload-rules
sudo udevadm trigger --name-match=kvm
- name: Run qemu
run: |
bazel run --config=x86_64-qnx //:run_qemu
- name: Cleanup QNX License
if: always()
run: |
rm -rf /opt/score_qnx
rm -rf "${HOME}/.cache/bazel"