Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
abdes committed May 7, 2024
2 parents ca80d55 + cbd90ae commit 0b38486
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cmake-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: recursive

Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
if: runner.os == 'Linux'
shell: bash
run: |
sudo apt-get install -y -qq xorg-dev libglu1-mesa-dev
sudo apt-get install -y -qq xorg-dev libglu1-mesa-dev libwayland-dev libxkbcommon-dev
- name: Install gcc-11
shell: bash
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: recursive

Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Install X11 dependencies
shell: bash
run: |
sudo apt-get install -y -qq xorg-dev libglu1-mesa-dev
sudo apt-get install -y -qq xorg-dev libglu1-mesa-dev libwayland-dev libxkbcommon-dev
- name: Configure CMake
run: cmake -B build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/macos-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
generator: ['Unix Makefiles', Xcode]
generator: ['Unix Makefiles']
build_type: [Debug, Release]
include:
- build_type: Debug
Expand All @@ -26,7 +26,7 @@ jobs:

steps:
- name: Setup cmake
uses: jwlawson/actions-setup-cmake@v1
uses: jwlawson/actions-setup-cmake@v2
with:
cmake-version: ${{ env.CMAKE_VERSION }}

Expand All @@ -39,9 +39,9 @@ jobs:

- name: Setup XCode
if: matrix.generator == 'Xcode'
uses: mobiledevops/xcode-select-version-action@v1
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-select-version: 13.1
xcode-version: latest-stable

- name: Log environment properties
run: |
Expand All @@ -51,14 +51,14 @@ jobs:
clang --version
ccache --version
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Configure build
working-directory: ${{runner.workspace}}
run: |
cmake -B build -S $GITHUB_WORKSPACE \
cmake -B build -S asap_app_imgui \
-D CMAKE_BUILD_TYPE=${{matrix.build_type}} \
-G "${{ matrix.generator }}" \
-D USE_CCACHE=ON \
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ubuntu-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
- name: Install X11 dependencies
run: |
sudo apt-get install -y -qq xorg-dev libglu1-mesa-dev
sudo apt-get install -y -qq xorg-dev libglu1-mesa-dev libglu1-mesa-dev libwayland-dev libxkbcommon-dev
- name: Install GCC (always runs)
run: |
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
clang-tools-${{steps.split.outputs.clang_version}} \
clang-tidy-${{steps.split.outputs.clang_version}}
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive

Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
- name: Setup cmake
# Do not use cmake from the distro repos as it is not the version we
# want
uses: jwlawson/actions-setup-cmake@v1
uses: jwlawson/actions-setup-cmake@v2
with:
cmake-version: ${{ env.CMAKE_VERSION }}

Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
- name: Configure build
working-directory: ${{runner.workspace}}
run: |
cmake -B build -S $GITHUB_WORKSPACE \
cmake -B build -S asap_app_imgui \
-D CMAKE_BUILD_TYPE=${{matrix.build_type}} \
-G Ninja \
-D CMAKE_MAKE_PROGRAM=ninja \
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
version: ${{ env.NINJA_VERSION }}

- name: Setup cmake
uses: jwlawson/actions-setup-cmake@v1
uses: jwlawson/actions-setup-cmake@v2
with:
cmake-version: ${{ env.CMAKE_VERSION }}

Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
- name: Configure build
working-directory: ${{runner.workspace}}
run: |
cmake -B build -S asap `
cmake -B build -S asap_app_imgui `
-D CMAKE_BUILD_TYPE=${{matrix.build_type}} `
-G "${{ matrix.generator }}" `
-D USE_CCACHE=ON `
Expand Down
2 changes: 1 addition & 1 deletion third_party/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ message(STATUS "${ASAP_LOG_PROJECT_HIERARCHY} >> third-party modules")
# GSL
# ------------------------------------------------------------------------------

asap_add_package(NAME gsl GIT_TAG main GITHUB_REPOSITORY microsoft/GSL)
asap_add_package(NAME gsl GIT_TAG v4.0.0 GITHUB_REPOSITORY microsoft/GSL)

# ------------------------------------------------------------------------------
# fmt::fmt-header-only
Expand Down

0 comments on commit 0b38486

Please sign in to comment.