-
Notifications
You must be signed in to change notification settings - Fork 20
Images as single module #86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
6b2e16a
Initial reworked structure
pawelrutkaq 6a44d18
Move feature_showcases to showcases and deploy to x86
pawelrutkaq e7be6b4
Initial itf support in qnx_x86_64 image
pawelrutkaq 437bd49
add scrample tests via images
PiotrKorkus 20ac39f
move ebclfsa into images
pawelrutkaq a64b415
Rename macro
pawelrutkaq a41a5a9
Make examples using CLI to help user understand content of release
pawelrutkaq 54cf210
add persistency itf test
PiotrKorkus f728a5a
Fix CLI for QNX and support x86_64 toolchain
pawelrutkaq fbc9da9
Add cli as entrypoint
pawelrutkaq fcad0da
Cleanup module bazel
pawelrutkaq a7b133d
Fix logo
pawelrutkaq 73407ad
Single module test
pawelrutkaq 5b2feb3
Port EB Corbos
pawelrutkaq cef7427
Move autosd
pawelrutkaq a858870
Make structure more meangfull
pawelrutkaq 9f6cd6f
Fix patches
pawelrutkaq 3f92fc4
Remove autosd and EB
pawelrutkaq 318e5a3
Align autosd and workflows
pawelrutkaq 2b9c9ae
fix docs build
PiotrKorkus 7c8cd76
Fix workflows
pawelrutkaq 91b1b45
Remove qnx_qemu as it was moved to images
pawelrutkaq File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,69 @@ | ||
| # ******************************************************************************* | ||
| # 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: QNX8 - Build & Test | ||
| on: | ||
| pull_request: | ||
| types: [opened, reopened, synchronize] | ||
| paths: | ||
| - 'integration/**' | ||
| merge_group: | ||
| types: [checks_requested] | ||
| paths: | ||
| - 'integration/**' | ||
|
|
||
| jobs: | ||
| qnx-build-x86_64: | ||
| name: x86_64 | ||
| runs-on: ${{ vars.REPO_RUNNER_LABELS && fromJSON(vars.REPO_RUNNER_LABELS) || 'ubuntu-latest' }} | ||
| environment: ${{ inputs.environment-name }} | ||
| permissions: | ||
| contents: read | ||
| pull-requests: read | ||
|
|
||
| steps: | ||
| - name: Checkout repository (Handle all events) | ||
| uses: actions/checkout@v4.2.2 | ||
| with: | ||
| ref: ${{ github.head_ref || github.event.pull_request.head.ref || github.ref }} | ||
| repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }} | ||
|
|
||
| - name: Setup Bazel with shared caching | ||
| uses: bazel-contrib/setup-bazel@0.18.0 | ||
| with: | ||
| disk-cache: ${{ inputs.bazel-disk-cache }} | ||
| repository-cache: true | ||
| bazelisk-cache: true | ||
| cache-save: ${{ github.event_name == 'push' }} | ||
|
|
||
| - name: Prepare QNX license | ||
| env: | ||
| SCORE_QNX_LICENSE: ${{ secrets.SCORE_QNX_LICENSE }} | ||
| run: | | ||
| set -euo pipefail | ||
|
|
||
| LICENSE_DIR="/opt/score_qnx/license" | ||
| sudo mkdir -p "${LICENSE_DIR}" | ||
| echo "${SCORE_QNX_LICENSE}" | base64 --decode | sudo tee "${LICENSE_DIR}/licenses" >/dev/null | ||
|
|
||
| - name: Build with QNX toolchain | ||
| env: | ||
| SCORE_QNX_USER: ${{ secrets.SCORE_QNX_USER }} | ||
| SCORE_QNX_PASSWORD: ${{ secrets.SCORE_QNX_PASSWORD }} | ||
| run: | | ||
| bazel build --config qnx-x86_64 //images/qnx_x86_64:image | ||
| working-directory: ./integration | ||
|
|
||
| - name: Cleanup QNX license | ||
| if: always() | ||
| run: sudo rm -rf /opt/score_qnx |
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please also mention
integration/README.md
here