Replace ipc_bridge with scrample code #13
Workflow file for this run
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
| # ******************************************************************************* | |
| # 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: Build for and Test on EB corbos Linux for Safety Applications | |
| on: | |
| pull_request: | |
| paths: | |
| - 'ebclfsa/**' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: build-and-test-ebclfsa | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/eclipse-score/devcontainer:0.1.0 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Build for EB corbos Linux for Safety Applications and run tests | |
| run: bazel build --config=aarch64 --spawn_strategy=local //scrample_sil:run_example | |
| working-directory: ./ebclfsa | |
| - name: Upload test logs | |
| uses: actions/upload-artifact@v5 | |
| with: | |
| name: test-logs | |
| path: ebclfsa/bazel-bin/scrample_sil/*.log |