Skip to content

Commit 5abd815

Browse files
authored
Merge pull request #210 from yuchen0cc/main
fix certificate error when wget cmake
2 parents 69bce7a + 0970db3 commit 5abd815

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@ elif [[ ${OS} =~ "mariner" ]]; then
6161
fi
6262

6363
if [[ ${ARCH} == "x86_64" ]]; then
64-
wget https://cmake.org/files/v3.15/cmake-3.15.0-Linux-x86_64.tar.gz
64+
wget --no-check-certificate https://cmake.org/files/v3.15/cmake-3.15.0-Linux-x86_64.tar.gz
6565
tar -zxf cmake-3.15.0-Linux-x86_64.tar.gz -C /usr/local/
6666
export PATH="/usr/local/cmake-3.15.0-Linux-x86_64/bin:$PATH"
6767
else
68-
wget https://cmake.org/files/v3.20/cmake-3.20.6-linux-aarch64.tar.gz
68+
wget --no-check-certificate https://cmake.org/files/v3.20/cmake-3.20.6-linux-aarch64.tar.gz
6969
tar -zxf cmake-3.20.6-linux-aarch64.tar.gz -C /usr/local/
7070
export PATH="/usr/local/cmake-3.20.6-linux-aarch64/bin:$PATH"
7171
fi

0 commit comments

Comments
 (0)