Skip to content

Commit

Permalink
handle newline
Browse files Browse the repository at this point in the history
  • Loading branch information
lobis committed Dec 2, 2023
1 parent 08eaa0a commit 471bea4
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions .github/workflows/build-test-new.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,16 +51,14 @@ jobs:
- name: Build and Install Geant4
if: steps.cache.outputs.cache-hit != 'true'
run: |
git clone https://github.com/Geant4/geant4.git geant4 --depth 1 --branch v${{ matrix.geant4-version }}
cmake -G Ninja -B geant4/build -S geant4
-DCMAKE_INSTALL_PREFIX=geant4-install -DCMAKE_CXX_STANDARD=$CMAKE_CXX_STANDARD -DCMAKE_BUILD_TYPE=Release
-DGEANT4_USE_GDML=ON
-DGEANT4_INSTALL_EXAMPLES=OFF
-DGEANT4_INSTALL_DATA=OFF
-DGEANT4_BUILD_TLS_MODEL=global-dynamic
cmake --build geant4/build -j$(nproc) --target install
rm -rf geant4
run: >-
git clone https://github.com/Geant4/geant4.git geant4 --depth 1
--branch v${{ matrix.geant4-version }} cmake -G Ninja -B geant4/build
-S geant4 -DCMAKE_INSTALL_PREFIX=geant4-install
-DCMAKE_CXX_STANDARD=20 -DCMAKE_BUILD_TYPE=Release
-DGEANT4_USE_GDML=ON -DGEANT4_INSTALL_EXAMPLES=OFF
-DGEANT4_INSTALL_DATA=OFF -DGEANT4_BUILD_TLS_MODEL=global-dynamic
cmake --build geant4/build -j$(nproc) --target install rm -rf geant4
- name: Cache Geant4 Installation
if: steps.cache.outputs.cache-hit != 'true'
Expand Down

0 comments on commit 471bea4

Please sign in to comment.