Skip to content

Commit 8fc1b7c

Browse files
committed
Add QNX build workflow configuration
1 parent 9925dba commit 8fc1b7c

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

.github/workflows/build_qnx.yml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# *******************************************************************************
2+
# Copyright (c) 2026 Contributors to the Eclipse Foundation
3+
#
4+
# See the NOTICE file(s) distributed with this work for additional
5+
# information regarding copyright ownership.
6+
#
7+
# This program and the accompanying materials are made available under the
8+
# terms of the Apache License Version 2.0 which is available at
9+
# https://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# SPDX-License-Identifier: Apache-2.0
12+
# *******************************************************************************
13+
14+
name: Bazel Build (QNX)
15+
on:
16+
pull_request:
17+
types: [opened, reopened, synchronize]
18+
pull_request_target:
19+
types: [opened, reopened, synchronize]
20+
branches:
21+
- main
22+
push:
23+
branches:
24+
- main
25+
merge_group:
26+
types: [checks_requested]
27+
28+
jobs:
29+
qnx-build:
30+
strategy:
31+
matrix:
32+
bazel-config: [bl-x86_64-qnx, bl-aarch64-qnx]
33+
uses: eclipse-score/cicd-workflows/.github/workflows/qnx-build.yml@main
34+
permissions:
35+
contents: read
36+
pull-requests: read
37+
with:
38+
bazel-target: "//score/... -//score/mw/log/rust:log"
39+
bazel-config: ${{ matrix.bazel-config }}
40+
credential-helper: ".github/tools/qnx_credential_helper.py"
41+
secrets:
42+
score-qnx-license: ${{ secrets.SCORE_QNX_LICENSE }}
43+
score-qnx-user: ${{ secrets.SCORE_QNX_USER }}
44+
score-qnx-password: ${{ secrets.SCORE_QNX_PASSWORD }}

0 commit comments

Comments
 (0)