Skip to content

Temp commit 1

Temp commit 1 #1

Workflow file for this run

# *******************************************************************************

Check failure on line 1 in .github/workflows/qnx.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/qnx.yml

Invalid workflow file

(Line: 40, Col: 5): Unexpected value 'uses', (Line: 44, Col: 5): Unexpected value 'with', (Line: 50, Col: 5): Unexpected value 'secrets', (Line: 25, Col: 5): Required property is missing: runs-on
# Copyright (c) 2026 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: Bazel Build (QNX)
on:
pull_request:
types: [opened, reopened, synchronize]
push:
branches:
- main
merge_group:
types: [checks_requested]
workflow_call:
jobs:
qnx-build:
name: Build and Test ${{ matrix.bazel-config }}
defaults:
run:
working-directory: ./tests
strategy:
fail-fast: false
matrix:
include:
- bazel-config: x86_64-qnx
bazel-test-target: >-
//:all_tests
- bazel-config: aarch64-qnx
bazel-test-target: >-
//:all_tests
extra-bazel-test-flags: "--test_timeout=120,600,1800,7200" # Increase test timeout due to QEMU emulation
uses: eclipse-score/cicd-workflows/.github/workflows/qnx-build.yml@af347722c7ae3ed85518895c11268d96ac728f62
permissions:
contents: read
pull-requests: read
with:
bazel-target: "//:all_tests"
bazel-config: ${{ matrix.bazel-config }}
bazel-test-target: ${{ matrix.bazel-test-target }}
credential-helper: ".github/tools/qnx_credential_helper.py"
bazel-disk-cache: ${{ matrix.bazel-config }}
secrets:
score-qnx-license: ${{ secrets.SCORE_QNX_LICENSE }}
score-qnx-user: ${{ secrets.SCORE_QNX_USER }}
score-qnx-password: ${{ secrets.SCORE_QNX_PASSWORD }}