Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 32 additions & 3 deletions .github/workflows/psv_pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
shell: bash

psv-linux-22-04-gcc11-build:
name: PSV.Linux.22.04.gcc11
name: PSV.Linux.22.04.gcc11.Tests
runs-on: ubuntu-22.04
env:
BUILD_TYPE: RelWithDebInfo
Expand All @@ -90,6 +90,29 @@ jobs:
- name: Compile project with cmake and ccache
run: gcc --version && ./scripts/linux/psv/build_psv.sh
shell: bash
- name: Run unit and integration tests
run: ./scripts/linux/psv/test_psv.sh
shell: bash

psv-linux-latest-gcc14-build:
name: PSV.Linux.latest.gcc14.Tests
runs-on: ubuntu-latest
env:
BUILD_TYPE: RelWithDebInfo
CC: gcc-14
CXX: g++-14
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install Ubuntu dependencies
run: sudo rm /etc/apt/sources.list.d/microsoft-prod.list && sudo add-apt-repository ppa:ubuntu-toolchain-r/test && sudo apt-get update && sudo apt-get install -y libboost-all-dev libssl-dev libcurl4-openssl-dev gcc-14 g++-14 ccache --no-install-recommends
shell: bash
- name: Compile project with cmake and ccache
run: gcc --version && ./scripts/linux/psv/build_psv.sh
shell: bash
- name: Run unit and integration tests
run: ./scripts/linux/psv/test_psv.sh
shell: bash

psv-linux-latest-gcc14-build-no-cache:
name: PSV.Linux.latest.gcc14.OLP_SDK_ENABLE_DEFAULT_CACHE=OFF
Expand All @@ -109,7 +132,7 @@ jobs:
shell: bash

psv-linux-22-04-gcc13-build:
name: PSV.Linux.22.04.gcc13
name: PSV.Linux.22.04.gcc13.Tests
runs-on: ubuntu-22.04
env:
BUILD_TYPE: RelWithDebInfo
Expand All @@ -124,6 +147,9 @@ jobs:
- name: Compile project with cmake and ccache
run: gcc --version && ./scripts/linux/psv/build_psv.sh
shell: bash
- name: Run unit and integration tests
run: ./scripts/linux/psv/test_psv.sh
shell: bash

psv-linux-22-04-gcc11-build-no-cache:
name: PSV.Linux.22.04.gcc11.OLP_SDK_ENABLE_DEFAULT_CACHE=OFF
Expand All @@ -141,7 +167,7 @@ jobs:
shell: bash

psv-linux-22-04-clang-build:
name: PSV.Linux.22.04.clang
name: PSV.Linux.22.04.clang.Tests
runs-on: ubuntu-22.04
env:
BUILD_TYPE: RelWithDebInfo
Expand All @@ -157,6 +183,9 @@ jobs:
- name: Compile project on Clang
run: scripts/linux/psv/build_psv.sh
shell: bash
- name: Run unit and integration tests
run: scripts/linux/psv/test_psv.sh
shell: bash

psv-android-22-04-build:
name: PSV.Linux.Android.22.04
Expand Down
Loading