Skip to content

Commit b9dc777

Browse files
committed
Add QNX build workflow configuration
1 parent 1d729f0 commit b9dc777

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

.github/workflows/build_qnx.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
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+
name: Bazel Build (QNX)
14+
on:
15+
pull_request:
16+
types: [opened, reopened, synchronize]
17+
push:
18+
branches:
19+
- main
20+
merge_group:
21+
types: [checks_requested]
22+
jobs:
23+
qnx-build:
24+
strategy:
25+
fail-fast: false
26+
matrix:
27+
bazel-config: [bl-x86_64-qnx, bl-aarch64-qnx]
28+
uses: eclipse-score/cicd-workflows/.github/workflows/qnx-build.yml@main
29+
permissions:
30+
contents: read
31+
pull-requests: read
32+
with:
33+
bazel-target: "//score/..."
34+
bazel-config: ${{ matrix.bazel-config }}
35+
credential-helper: ".github/tools/qnx_credential_helper.py"
36+
secrets:
37+
score-qnx-license: ${{ secrets.SCORE_QNX_LICENSE }}
38+
score-qnx-user: ${{ secrets.SCORE_QNX_USER }}
39+
score-qnx-password: ${{ secrets.SCORE_QNX_PASSWORD }}

0 commit comments

Comments
 (0)