Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • mil1712989/exercise-project
  • Kagan.Atci/exercise-project
  • Fan.Fan/exercise-project
  • Natalia.LopezAnguita/exercise-project
  • a.bangun/exercise-project
  • hadi.hassanian_arefi/exercise-project
  • gunnar.pruss/exercise-project
  • shte0001/exercise-project
  • e.di.napoli/exercise-project
  • gohr/exercise-project
  • l.scholtes/exercise-project
  • kim.nissen/exercise-project
  • sadiq.ali/exercise-project
  • marcos.vinicius.siqueira.da.silva/exercise-project
  • nikilaja.chinthakani/exercise-project
  • od1522/exercise-project
  • stelian.curceac/exercise-project
  • dennis.szczerbinski/exercise-project
  • Matthias.Schulze/exercise-project
  • peijun.li/exercise-project
  • lorenz.goenner/exercise-project
  • gehadmostafa/exercise-project
  • e.pfaehler/exercise-project
  • v.cherepashkin/exercise-project
  • j.bleiberschnig/exercise-project
  • l.kausch/exercise-project
  • marcoDZNE/exercise-project
  • betinaschnepf/exercise-project
  • stephan.paul/exercise-project
  • harshavardhan.subramanian/exercise-project
  • matthias.schmid/exercise-project
  • andreas.mann/exercise-project
  • s.dinkelacker/exercise-project
  • rebecca.wiegels/exercise-project
  • rebeca.fortes_martin/exercise-project
  • anne.glerum/exercise-project
  • daneish.despot/exercise-project
  • sizhong.yang/exercise-project
  • rossa/exercise-project
  • p.sieben/exercise-project
  • l.krieger/exercise-project
  • j.buffat/exercise-project
  • a.elibol/tmp4
  • jonathan.wider/exercise-project
  • DLR-MarkusSchreiber/exercise-project
  • frust45/exercise-project
  • v.sydoruk/exercise-project
  • hechrist/exercise-project
  • Eric.Einspaenner/exercise-project
  • c.paessler/exercise-project
  • z.cao/exercise-project
  • friedrich.boeing/exercise-project
  • Shubhi.Ambast/exercise-project
  • david.schwartz/exercise-project
  • fedorov.ev.al/exercise-project-ef
  • Rohin.Majeti/exercise-project
  • larissa.macedocruzdeoliveira/exercise-project
  • tobias.kahnis/exercise-project
  • alberto.descalzogarcia/exercise-project
  • sabrine.chelbi/exercise-project
  • nicole.buettner/exercise-project
  • maxim.brendike/exercise-project
  • irmsc64/exercise-project
  • hifis/software/education/hifis-workshops/gitlab-ci/exercise-project
  • b.bruns/exercise-project
  • tairi.aljand-geschwill/exercise-project
  • gudrun.lotze/exercise-project
  • yvonne.jenniges/exercise-project
  • maksim.valialshchikov/exercise-project
  • hans.werners/exercise-project
70 results
Show changes
Commits on Source (4)
......@@ -3,13 +3,9 @@
#
# SPDX-License-Identifier: MIT
---
include:
- local: ".gitlab/ci/common.gitlab-ci.yml"
- local: ".gitlab/ci/lint.gitlab-ci.yml"
- local: ".gitlab/ci/build.gitlab-ci.yml"
- local: ".gitlab/ci/test.gitlab-ci.yml"
- local: ".gitlab/ci/run.gitlab-ci.yml"
...
......@@ -3,9 +3,7 @@
#
# SPDX-License-Identifier: MIT
---
build:gcc:
build-gcc:
extends:
- .install_cmake
- .compiler_versions
......@@ -17,5 +15,3 @@ build:gcc:
artifacts:
paths:
- build_gcc_${VERSION}
...
......@@ -3,8 +3,6 @@
#
# SPDX-License-Identifier: MIT
---
stages:
- lint
- build
......@@ -29,5 +27,3 @@ default:
parallel:
matrix:
- VERSION: [ "12", "13", "14" ]
...
......@@ -3,8 +3,6 @@
#
# SPDX-License-Identifier: MIT
---
license-compliance:
stage: lint
before_script:
......@@ -20,5 +18,3 @@ codestyle:
- pipx install cpplint
script:
- cpplint --recursive src/ tests/
...
......@@ -3,18 +3,11 @@
#
# SPDX-License-Identifier: MIT
---
running:
hello:
image: gcc:14
stage: run
script:
- cd build_gcc_14/bin/ && ./helloWorld
needs:
- job: "build:gcc"
- job: "build-gcc"
artifacts: true
parallel:
matrix:
- VERSION: 14
...
......@@ -3,9 +3,7 @@
#
# SPDX-License-Identifier: MIT
---
test:gcc:
test-gcc:
extends:
- .install_cmake
- .compiler_versions
......@@ -14,7 +12,5 @@ test:gcc:
script:
- cd build_gcc_${VERSION} && ctest
needs:
- job: "build:gcc"
- job: "build-gcc"
artifacts: true
...
......@@ -15,11 +15,11 @@ if(POLICY CMP0135)
cmake_policy(SET CMP0135 NEW)
endif()
# Setup GoogleTest v1.14.0 and build tests
# Setup GoogleTest v1.16.0 and build tests
include(FetchContent)
FetchContent_Declare(
googletest
URL https://github.com/google/googletest/archive/refs/tags/v1.14.0.zip
URL https://github.com/google/googletest/archive/refs/tags/v1.16.0.zip
)
# For Windows: Prevent overriding the parent project's compiler/linker settings
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
......