GiteaCI #1

Merged
rboullard merged 14 commits from GiteaCI into Development 2026-01-28 14:29:12 +00:00
2 changed files with 2 additions and 12 deletions
Showing only changes of commit 0895c79873 - Show all commits

View File

@@ -9,10 +9,6 @@ on:
env:
CCACHE_BASEDIR: ${{ github.workspace }}
permissions:
contents: read
actions: read
checks: write
jobs:
build-and-test:
runs-on: ubuntu-latest
@@ -48,11 +44,4 @@ jobs:
- name: Unit Tests
run: |
cd ./build/${{ matrix.build_type }}
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
xvfb-run ctest . --output-on-failure

View File

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