-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
123 changed files
with
52,515 additions
and
217 deletions.
There are no files selected for viewing
This file contains 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
File renamed without changes.
This file contains 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,62 @@ | ||
#!/bin/bash | ||
#******************************************************************************** | ||
# Copyright (c) 2022 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 2.0 which is available at | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
#*******************************************************************************/ | ||
|
||
# To prevent interactive shells | ||
export ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
# Install apt & root utils needed inside devcontainer | ||
sudo apt-get -qqy update && | ||
sudo apt-get -qqy install --no-install-recommends apt-utils software-properties-common sudo curl file | ||
|
||
# Install dev utilities | ||
sudo apt-get -qqy install --no-install-recommends git doxygen can-utils python3 | ||
|
||
# Install build tools | ||
sudo apt-get -qqy install --no-install-recommends \ | ||
cmake \ | ||
make | ||
|
||
# compilers | ||
# compiler version must be sync with conan build profile | ||
sudo apt-get -qqy install --no-install-recommends \ | ||
g++ \ | ||
g++-aarch64-linux-gnu | ||
|
||
sudo apt-get -qqy install --no-install-recommends \ | ||
lcov \ | ||
gcovr \ | ||
clang-format \ | ||
cppcheck \ | ||
valgrind | ||
|
||
# Install PIP | ||
[ -z "$(which pip3)" ] && sudo apt-get -qqy install --no-install-recommends --fix-missing python3-pip | ||
|
||
# Default pip and setuptools are too old... | ||
pip3 install --upgrade pip setuptools | ||
|
||
# conan: dependency management | ||
# - conan needed > 1.43 for gtest | ||
# - conan >= 2.0 breaks commandline interface | ||
# cantools: code generation from .dbc file | ||
pip3 install \ | ||
'conan==1.56.0' \ | ||
'cantools==37.0.1' | ||
|
||
# install docker | ||
# curl -fsSL https://get.docker.com -o - | bash - | ||
# docker --version | ||
|
||
echo "### Running on:" | ||
cat /etc/os-release |
This file contains 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,127 @@ | ||
# /******************************************************************************** | ||
# * Copyright (c) 2022 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 2.0 which is available at | ||
# * http://www.apache.org/licenses/LICENSE-2.0 | ||
# * | ||
# * SPDX-License-Identifier: Apache-2.0 | ||
# ********************************************************************************/ | ||
|
||
name: seat-integration-test | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
# Run only on branches/commits and not tags | ||
branches: | ||
- main | ||
pull_request: | ||
paths: | ||
- ".github/workflows/seat_integration_test.yml" | ||
- "seat_service/**" | ||
- "proto/**" | ||
|
||
concurrency: | ||
group: ${{ github.ref }}-${{ github.workflow }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
integration-test: | ||
# reduce runtime requirements from libc/libc++ | ||
runs-on: ubuntu-20.04 | ||
# container: | ||
# image: ghcr.io/${{ github.repository }}/oci_kuksa-val-services-ci:v0.1.0 | ||
# credentials: | ||
# username: ${{ github.repository_owner }} | ||
# password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
steps: | ||
- name: Adding github workspace as safe directory | ||
run: | | ||
git config --global --add safe.directory $GITHUB_WORKSPACE | ||
git config --global user.email "github-automation@users.noreply.github.com" | ||
git config --global user.name "Github Automation" | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install dependencies | ||
shell: bash | ||
run: | | ||
.github/workflows/scripts/seat-install-ci-tooling.sh | ||
- name: Build seat_service image | ||
shell: bash | ||
working-directory: ./seat_service | ||
run: | | ||
./docker-build.sh -l x86_64 | ||
- name: Setup VAL containers | ||
shell: bash | ||
env: | ||
# We may need to specify a VSS version compatible with the code in this repository | ||
# This is needed if the default VSS version used by Databroker has backward incompatible changes | ||
# affecting integration tests for this repository | ||
# The file specified must exist in the Databroker container | ||
# KDB_OPT: "--vss vss_release_3.1.1.json" | ||
SEAT_TAG: "prerelease" | ||
run: | | ||
./seat_service/integration_test/it-setup.sh init | ||
if ! ./seat_service/integration_test/it-setup.sh start; then | ||
echo "### Container startup failed logs:" | ||
./seat_service/integration_test/it-setup.sh status --logs | ||
exit 1 | ||
fi | ||
sleep 1 | ||
./seat_service/integration_test/it-setup.sh status --logs | ||
# echo "$ docker image ls" | ||
# docker image ls | ||
# echo "$ docker ps -a" | ||
# docker ps -a | ||
# echo "$ docker inspect val-int" | ||
# docker inspect val-int | ||
- name: Install Requirements | ||
shell: bash | ||
run: | | ||
pip3 install -U -r seat_service/integration_test/requirements.txt | ||
pip3 install -U -e seat_service/integration_test/ | ||
- name: Run Integration Tests | ||
shell: bash | ||
env: | ||
# force using it-setup.sh (testing with ghcr.io tags), DAPR standalone mode does not work in CI | ||
USE_DAPR: "0" | ||
GRPC_ENABLE_FORK_SUPPORT: "false" | ||
run: | | ||
pytest -v ./seat_service/integration_test --asyncio-mode=auto \ | ||
--override-ini junit_family=xunit1 --junit-xml=./results/IntegrationTest/junit.xml \ | ||
--log-file=./results/IntegrationTest/integration.log --log-file-level=DEBUG | ||
# Step below disabled, only triggered for pull requests internally within repository | ||
# and that is typically not used, and is not working as action does not have sufficient permissions | ||
# - name: Publish Integration Test Results | ||
# uses: EnricoMi/publish-unit-test-result-action@v2 | ||
# if: ${{ github.event.pull_request.head.repo.full_name == github.repository }} | ||
# with: | ||
# files: ./results/IntegrationTest/junit.xml | ||
|
||
- name: Upload Integration Test Logs | ||
uses: actions/upload-artifact@v3 | ||
if: always() | ||
with: | ||
name: integration_test.log | ||
path: | | ||
./results/IntegrationTest/integration.log | ||
- name: Integration logs and cleanup | ||
shell: bash | ||
run: | | ||
./seat_service/integration_test/it-setup.sh status --logs | ||
./seat_service/integration_test/it-setup.sh cleanup --force | ||
docker image ls | ||
docker ps -a |
This file contains 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 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 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 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.