Skip to content

Commit

Permalink
Skip install and artifact upload. [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
VolkerEnderlein committed Dec 15, 2023
1 parent 223bd76 commit aab3e9f
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,16 @@ jobs:
tar xzf $DOWNLOAD_FILE_SOQT -C cmake_download_dir
cmake -S . -B cmake_build_dir -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake_install_dir -DCMAKE_PREFIX_PATH=cmake_download_dir/Coin3D -DGui=Qt
- name: Build project
run: cmake --build cmake_build_dir --target install --config Release -- -j4
run: cmake --build cmake_build_dir --target all --config Release -- -j4
#- name: Run tests
# run: ctest -C Release -VV
# working-directory: cmake_build_dir
- name: Create Artifacts
uses: actions/upload-artifact@v3
with:
name: Ubuntu-Artifacts
path: cmake_install_dir/
if: always()
#- name: Create Artifacts
# uses: actions/upload-artifact@v3
# with:
# name: Ubuntu-Artifacts
# path: cmake_install_dir/
# if: always()

windows-build:
name: Windows Build
Expand Down Expand Up @@ -85,16 +85,16 @@ jobs:
7z x %DOWNLOAD_FILE_SOWIN% -ocmake_download_dir
cmake -S . -B cmake_build_dir -G "Visual Studio 17 2022" -A x64 -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake_install_dir -DCMAKE_PREFIX_PATH=cmake_download_dir/Coin3D -DGui=Win
- name: Build project
run: cmake --build cmake_build_dir --target INSTALL --config Release -- /nologo /verbosity:minimal /maxcpucount:2 /property:MultiProcessorCompilation=true
run: cmake --build cmake_build_dir --target ALL_BUILD --config Release -- /nologo /verbosity:minimal /maxcpucount:2 /property:MultiProcessorCompilation=true
#- name: Run tests
# run: ctest -C Release -VV
# working-directory: cmake_build_dir
- name: Create Artifacts
uses: actions/upload-artifact@v3
with:
name: Windows-Artifacts
path: cmake_install_dir/
if: always()
#- name: Create Artifacts
# uses: actions/upload-artifact@v3
# with:
# name: Windows-Artifacts
# path: cmake_install_dir/
# if: always()

macos-build:
name: MacOS Build
Expand Down Expand Up @@ -124,13 +124,13 @@ jobs:
tar xzf $DOWNLOAD_FILE_SOQT -C cmake_download_dir
cmake -S . -B cmake_build_dir -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake_install_dir -DCMAKE_PREFIX_PATH="cmake_download_dir/Coin3D;/usr/local/opt/qt5" -DGui=Qt
- name: Build project
run: sudo cmake --build cmake_build_dir --target install --config Release -- -j4
run: sudo cmake --build cmake_build_dir --target all --config Release -- -j4
#- name: Run tests
# run: ctest -C Release -VV
# working-directory: cmake_build_dir
- name: Create Artifacts
uses: actions/upload-artifact@v3
with:
name: MacOS-Artifacts
path: cmake_install_dir/
if: always()
#- name: Create Artifacts
# uses: actions/upload-artifact@v3
# with:
# name: MacOS-Artifacts
# path: cmake_install_dir/
# if: always()

0 comments on commit aab3e9f

Please sign in to comment.