We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87900c0 commit 7ebdc4dCopy full SHA for 7ebdc4d
abi-check.sh
@@ -1,14 +1,18 @@
1
#!/bin/sh
2
3
-prev=0.17
+# The 0.17 release is broken
4
+#prev=0.17
5
+prev=0.16
6
release=0.18
7
8
# ... clone json-c, abi-compliance-checker, abi-dumper
9
-mkdir build
-cd build
10
-CFLAGS=-Og cmake -DCMAKE_INSTALL_PREFIX=~/json-c-installs/json-c-${release} ..
11
-make && make test && make install
+if [ "$1" != "--skip-build" ] ; then
+ mkdir build
12
+ cd build
13
+ CFLAGS=-Og cmake -DCMAKE_INSTALL_PREFIX=~/json-c-installs/json-c-${release} ..
14
+ make && make test && make install
15
+fi
16
17
# Assume the old version has already been built
18
0 commit comments