Skip to content

Commit 7608393

Browse files
committed
Regenerate with updates.
1 parent e66f89a commit 7608393

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -441,9 +441,9 @@ jobs:
441441
echo "CMAKE_LIBRARY_PATH=/usr/local/lib" >> $GITHUB_ENV
442442
fi
443443
if [[ ${{ matrix.assert }} == 'ndebug' ]]; then
444-
echo "ASSERT_NDEBUG=--enable-ndebug -Denable-ndebug=yes" >> $GITHUB_ENV
444+
echo "ASSERT_NDEBUG=--enable-ndebug" >> $GITHUB_ENV
445445
else
446-
echo "ASSERT_NDEBUG=--disable-ndebug -Denable-ndebug=no" >> $GITHUB_ENV
446+
echo "ASSERT_NDEBUG=--disable-ndebug" >> $GITHUB_ENV
447447
fi
448448
if [[ ${{ matrix.link }} == 'dynamic' ]]; then
449449
echo "LINKAGE=--disable-static" >> $GITHUB_ENV
@@ -673,9 +673,9 @@ jobs:
673673
echo "CMAKE_LIBRARY_PATH=/usr/local/lib" >> $GITHUB_ENV
674674
fi
675675
if [[ ${{ matrix.assert }} == 'ndebug' ]]; then
676-
echo "ASSERT_NDEBUG=--enable-ndebug -Denable-ndebug=yes" >> $GITHUB_ENV
676+
echo "ASSERT_NDEBUG=--enable-ndebug" >> $GITHUB_ENV
677677
else
678-
echo "ASSERT_NDEBUG=--disable-ndebug -Denable-ndebug=no" >> $GITHUB_ENV
678+
echo "ASSERT_NDEBUG=--disable-ndebug" >> $GITHUB_ENV
679679
fi
680680
if [[ ${{ matrix.link }} == 'dynamic' ]]; then
681681
echo "LINKAGE=--disable-static" >> $GITHUB_ENV
@@ -806,7 +806,7 @@ jobs:
806806

807807
steps:
808808
- name: Add msbuild to PATH
809-
uses: microsoft/setup-msbuild@v2
809+
uses: microsoft/setup-msbuild@v3
810810
with:
811811
msbuild-architecture: x64
812812

install-cmake.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ create_directory()
8585
local DIRECTORY="$1"
8686

8787
rm -rf "$DIRECTORY"
88-
mkdir "$DIRECTORY"
88+
mkdir -p "$DIRECTORY"
8989
}
9090

9191
display_heading_message()

install-cmakepresets.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ create_directory()
9191
local DIRECTORY="$1"
9292

9393
rm -rf "$DIRECTORY"
94-
mkdir "$DIRECTORY"
94+
mkdir -p "$DIRECTORY"
9595
}
9696

9797
display_heading_message()

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ create_directory()
8585
local DIRECTORY="$1"
8686

8787
rm -rf "$DIRECTORY"
88-
mkdir "$DIRECTORY"
88+
mkdir -p "$DIRECTORY"
8989
}
9090

9191
display_heading_message()

0 commit comments

Comments
 (0)