We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93a9520 commit c60def9Copy full SHA for c60def9
scripts/ci.sh
@@ -1,5 +1,11 @@
1
#!/bin/sh -xe
2
3
+if [ "$CI_ARCH" = "amd64" ]; then
4
+ export PATH=/mingw64/bin:$PATH
5
+else
6
+ export PATH=/mingw32/bin:$PATH
7
+fi
8
+
9
7za | head -2
10
gcc -v
11
cppcheck --error-exitcode=1 src
@@ -10,13 +16,6 @@ if [ -n "$CI_BUILD_TAG" ]; then
16
fi
17
export ELEVATE_CFLAGS="-DELEVATE_VERSION=\\\"$ELEVATE_VERSION\\\""
12
18
13
-
14
-if [ "$CI_ARCH" = "amd64" ]; then
15
- export PATH=/mingw64/bin:$PATH
-else
- export PATH=/mingw32/bin:$PATH
-fi
19
20
make
21
file elevate.exe
22
0 commit comments