Browse Source

Merge pull request #63 from shailesh09/fix-jenkins-build-steps

Fix jenkins build steps
release/v0.1
jl777 9 years ago
committed by GitHub
parent
commit
5a25b14f75
  1. 6
      crypto777/m_unix
  2. 4
      iguana/m_ios
  3. 4
      iguana/m_osx
  4. 6
      iguana/m_unix
  5. 4
      m_ios
  6. 4
      m_unix

6
crypto777/m_unix

@ -1,4 +1,8 @@
git pull
#!/bin/bash
if [[ $# -eq 0 ]]; then
git pull
fi
rm *.o
gcc -c -O2 *.c jpeg/*.c jpeg/unix/*.c # -I/usr/lib/x86_64-linux-gnu/curl
rm -f ../agents/libcrypto777.a; ar rcu ../agents/libcrypto777.a *.o

4
iguana/m_ios

@ -2,7 +2,9 @@ set -x
CC="$(xcrun --sdk iphoneos --find clang) -isysroot $(xcrun --sdk iphoneos --show-sdk-path) -arch arm64 -ONLY_ACTIVE_ARCH=YES"
git pull
if [[ $# -eq 0 ]]; then
git pull
fi
echo CC=$CC

4
iguana/m_osx

@ -1,5 +1,7 @@
rm ../agents/iguana *.o
git pull
if [[ $# -eq 0 ]]; then
git pull
fi
cd secp256k1; ./m_osx; cd ..
gcc -g -Wno-deprecated -c -O2 *.c databases/iguana_DB.c
gcc -g -Wno-deprecated -c main.c iguana777.c iguana_bundles.c

6
iguana/m_unix

@ -1,6 +1,10 @@
#!/bin/bash
#./configure --enable-endomorphism --enable-module-ecdh --enable-module-schnorr --enable-module-rangeproof --enable-experimental --enable-module_recovery
rm ../agents/iguana *.o
git pull
if [[ $# -eq 0 ]]; then
git pull
fi
cd secp256k1; ./m_unix; cd ..
cd ../crypto777; ./m_unix; cd ../iguana
gcc -g -Wno-deprecated -c *.c ../basilisk/basilisk.c ../gecko/gecko.c ../datachain/datachain.c

4
m_ios

@ -1,2 +1,4 @@
git pull
if [[ $# -eq 0 ]]; then
git pull
fi
cd iguana; ./m_ios; cd ..

4
m_unix

@ -1,3 +1,5 @@
git pull
if [[ $# -eq 0 ]]; then
git pull
fi
cd iguana; ./m_unix; cd ..
#cd SuperNET; ./m_unix; cd ..

Loading…
Cancel
Save