deliberatly failing
Some checks failed
Bigfoot / Build & Test Debug (Unity Build: ON) (push) Failing after 26s
Bigfoot / Build & Test RelWithDebInfo (Unity Build: ON) (push) Has been cancelled
Bigfoot / Build & Test Release (Unity Build: OFF) (push) Has been cancelled
Bigfoot / Build & Test Release (Unity Build: ON) (push) Has been cancelled
Bigfoot / Build & Test Debug (Unity Build: OFF) (push) Failing after 25s
Bigfoot / Build & Test RelWithDebInfo (Unity Build: OFF) (push) Has been cancelled

This commit is contained in:
2026-01-28 15:24:31 +01:00
parent e1ba9413c6
commit 0895c79873
2 changed files with 2 additions and 12 deletions

View File

@@ -9,10 +9,6 @@ on:
env: env:
CCACHE_BASEDIR: ${{ github.workspace }} CCACHE_BASEDIR: ${{ github.workspace }}
permissions:
contents: read
actions: read
checks: write
jobs: jobs:
build-and-test: build-and-test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@@ -48,11 +44,4 @@ jobs:
- name: Unit Tests - name: Unit Tests
run: | run: |
cd ./build/${{ matrix.build_type }} cd ./build/${{ matrix.build_type }}
xvfb-run ctest . --output-on-failure xvfb-run ctest . --output-on-failure
- name: Unit Tests Report
uses: dorny/test-reporter@v2
with:
name: "Unit Tests Report (${{ matrix.build_type }}, unity_build=${{ matrix.unity_build }})"
path: build/${{ matrix.build_type }}/TestResults/*.xml
reporter: java-junit

View File

@@ -21,6 +21,7 @@ class TimeFixture: public ::testing::Test
TEST_F(TimeFixture, Year_ShouldReturnTheYear) TEST_F(TimeFixture, Year_ShouldReturnTheYear)
{ {
EXPECT_EQ(m_time.Year(), 2026); EXPECT_EQ(m_time.Year(), 2026);
EXPECT_TRUE(false);
} }
/****************************************************************************************/ /****************************************************************************************/