Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -441,9 +441,9 @@ jobs:
echo "CMAKE_LIBRARY_PATH=/usr/local/lib" >> $GITHUB_ENV
fi
if [[ ${{ matrix.assert }} == 'ndebug' ]]; then
echo "ASSERT_NDEBUG=--enable-ndebug -Denable-ndebug=yes" >> $GITHUB_ENV
echo "ASSERT_NDEBUG=--enable-ndebug" >> $GITHUB_ENV
else
echo "ASSERT_NDEBUG=--disable-ndebug -Denable-ndebug=no" >> $GITHUB_ENV
echo "ASSERT_NDEBUG=--disable-ndebug" >> $GITHUB_ENV
fi
if [[ ${{ matrix.link }} == 'dynamic' ]]; then
echo "LINKAGE=--disable-static" >> $GITHUB_ENV
Expand Down Expand Up @@ -673,9 +673,9 @@ jobs:
echo "CMAKE_LIBRARY_PATH=/usr/local/lib" >> $GITHUB_ENV
fi
if [[ ${{ matrix.assert }} == 'ndebug' ]]; then
echo "ASSERT_NDEBUG=--enable-ndebug -Denable-ndebug=yes" >> $GITHUB_ENV
echo "ASSERT_NDEBUG=--enable-ndebug" >> $GITHUB_ENV
else
echo "ASSERT_NDEBUG=--disable-ndebug -Denable-ndebug=no" >> $GITHUB_ENV
echo "ASSERT_NDEBUG=--disable-ndebug" >> $GITHUB_ENV
fi
if [[ ${{ matrix.link }} == 'dynamic' ]]; then
echo "LINKAGE=--disable-static" >> $GITHUB_ENV
Expand Down Expand Up @@ -806,7 +806,7 @@ jobs:

steps:
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2
uses: microsoft/setup-msbuild@v3
with:
msbuild-architecture: x64

Expand Down
2 changes: 1 addition & 1 deletion install-cmake.sh
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ create_directory()
local DIRECTORY="$1"

rm -rf "$DIRECTORY"
mkdir "$DIRECTORY"
mkdir -p "$DIRECTORY"
}

display_heading_message()
Expand Down
2 changes: 1 addition & 1 deletion install-cmakepresets.sh
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ create_directory()
local DIRECTORY="$1"

rm -rf "$DIRECTORY"
mkdir "$DIRECTORY"
mkdir -p "$DIRECTORY"
}

display_heading_message()
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ create_directory()
local DIRECTORY="$1"

rm -rf "$DIRECTORY"
mkdir "$DIRECTORY"
mkdir -p "$DIRECTORY"
}

display_heading_message()
Expand Down