Skip to content

Commit

Permalink
Update CI workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
VolkerEnderlein committed Dec 13, 2023
1 parent f82599a commit 046d219
Showing 1 changed file with 15 additions and 12 deletions.
27 changes: 15 additions & 12 deletions .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ jobs:
name: Ubuntu Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Create build directory and run CMake
run: |
sudo apt-get -y update
Expand All @@ -33,7 +34,7 @@ jobs:
# run: ctest -C Release -VV
# working-directory: cmake_build_dir
- name: Create Artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: Ubuntu-Artifacts
path: cmake_install_dir/
Expand All @@ -43,9 +44,10 @@ jobs:
# name: Windows Build
# runs-on: windows-latest
# steps:
# - uses: actions/checkout@v2
# - name: Checkout submodules
# run: git submodule update --init --recursive
# - name: Checkout repository
# uses: actions/checkout@v4
# with:
# submodules: recursive
# - name: Create build directory and run CMake
# shell: cmd
# run: |
Expand All @@ -64,7 +66,7 @@ jobs:
# # run: ctest -C Release -VV
# # working-directory: cmake_build_dir
# - name: Create Artifacts
# uses: actions/upload-artifact@v1
# uses: actions/upload-artifact@v3
# with:
# name: Windows-Artifacts
# path: cmake_install_dir/
Expand All @@ -74,9 +76,10 @@ jobs:
# name: MacOS Build
# runs-on: macos-latest
# steps:
# - uses: actions/checkout@v2
# - name: Checkout submodules
# run: git submodule update --init --recursive
# - name: Checkout repository
# uses: actions/checkout@v4
# with:
# submodules: recursive
# - name: Create build directory and run CMake
# run: |
# mkdir cmake_download_dir
Expand All @@ -94,7 +97,7 @@ jobs:
# # run: ctest -C Release -VV
# # working-directory: cmake_build_dir
# - name: Create Artifacts
# uses: actions/upload-artifact@v1
# uses: actions/upload-artifact@v3
# with:
# name: MacOS-Artifacts
# path: cmake_install_dir/
Expand Down

0 comments on commit 046d219

Please sign in to comment.