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 @@ ...@@ -3,13 +3,9 @@
# #
# SPDX-License-Identifier: MIT # SPDX-License-Identifier: MIT
---
include: include:
- local: ".gitlab/ci/common.gitlab-ci.yml" - local: ".gitlab/ci/common.gitlab-ci.yml"
- local: ".gitlab/ci/lint.gitlab-ci.yml" - local: ".gitlab/ci/lint.gitlab-ci.yml"
- local: ".gitlab/ci/build.gitlab-ci.yml" - local: ".gitlab/ci/build.gitlab-ci.yml"
- local: ".gitlab/ci/test.gitlab-ci.yml" - local: ".gitlab/ci/test.gitlab-ci.yml"
- local: ".gitlab/ci/run.gitlab-ci.yml" - local: ".gitlab/ci/run.gitlab-ci.yml"
...
...@@ -3,9 +3,7 @@ ...@@ -3,9 +3,7 @@
# #
# SPDX-License-Identifier: MIT # SPDX-License-Identifier: MIT
--- build-gcc:
build:gcc:
extends: extends:
- .install_cmake - .install_cmake
- .compiler_versions - .compiler_versions
...@@ -17,5 +15,3 @@ build:gcc: ...@@ -17,5 +15,3 @@ build:gcc:
artifacts: artifacts:
paths: paths:
- build_gcc_${VERSION} - build_gcc_${VERSION}
...
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# #
# SPDX-License-Identifier: MIT # SPDX-License-Identifier: MIT
---
stages: stages:
- lint - lint
- build - build
...@@ -29,5 +27,3 @@ default: ...@@ -29,5 +27,3 @@ default:
parallel: parallel:
matrix: matrix:
- VERSION: [ "12", "13", "14" ] - VERSION: [ "12", "13", "14" ]
...
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
# #
# SPDX-License-Identifier: MIT # SPDX-License-Identifier: MIT
---
license-compliance: license-compliance:
stage: lint stage: lint
before_script: before_script:
...@@ -20,5 +18,3 @@ codestyle: ...@@ -20,5 +18,3 @@ codestyle:
- pipx install cpplint - pipx install cpplint
script: script:
- cpplint --recursive src/ tests/ - cpplint --recursive src/ tests/
...
...@@ -3,18 +3,11 @@ ...@@ -3,18 +3,11 @@
# #
# SPDX-License-Identifier: MIT # SPDX-License-Identifier: MIT
--- hello:
running:
image: gcc:14 image: gcc:14
stage: run stage: run
script: script:
- cd build_gcc_14/bin/ && ./helloWorld - cd build_gcc_14/bin/ && ./helloWorld
needs: needs:
- job: "build:gcc" - job: "build-gcc"
artifacts: true artifacts: true
parallel:
matrix:
- VERSION: 14
...
...@@ -3,9 +3,7 @@ ...@@ -3,9 +3,7 @@
# #
# SPDX-License-Identifier: MIT # SPDX-License-Identifier: MIT
--- test-gcc:
test:gcc:
extends: extends:
- .install_cmake - .install_cmake
- .compiler_versions - .compiler_versions
...@@ -14,7 +12,5 @@ test:gcc: ...@@ -14,7 +12,5 @@ test:gcc:
script: script:
- cd build_gcc_${VERSION} && ctest - cd build_gcc_${VERSION} && ctest
needs: needs:
- job: "build:gcc" - job: "build-gcc"
artifacts: true artifacts: true
...
...@@ -15,11 +15,11 @@ if(POLICY CMP0135) ...@@ -15,11 +15,11 @@ if(POLICY CMP0135)
cmake_policy(SET CMP0135 NEW) cmake_policy(SET CMP0135 NEW)
endif() endif()
# Setup GoogleTest v1.14.0 and build tests # Setup GoogleTest v1.16.0 and build tests
include(FetchContent) include(FetchContent)
FetchContent_Declare( FetchContent_Declare(
googletest 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 # For Windows: Prevent overriding the parent project's compiler/linker settings
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE) set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
......