libzmq/builds
Stephan Guilloux (cos) a7774e38e6 Problem: builds/android/build.sh fails with CURVE=libsodium
How to reproduce:
```
prompt> git clone libzmq
prompt> cd libzmq/builds/android
prompt> export CURVE=libsodium
prompt> ./ci_build.sh
Cloning into 'libsodium'...
fatal: unable to connect to github.com:
github.com[0: 140.82.121.4]: errno=Connection timed out

Cloning into 'libsodium'...
fatal: unable to connect to github.com:
github.com[0: 140.82.121.3]: errno=Connection timed out

Cloning into 'libsodium'...
fatal: unable to connect to github.com:
github.com[0: 140.82.121.3]: errno=Connection timed out

Cloning into 'libsodium'...
fatal: unable to connect to github.com:
github.com[0: 140.82.121.4]: errno=Connection timed out

prompt>
```

Reason: Invalid URL to download libsodium:
```
prompt> grep -s 'git clone' libzmq/builds/android/*.sh
libzmq/builds/android/build.sh:70:        (cd "${cache}" && git clone -b stable --depth 1 git://github.com/jedisct1/libsod
                                                                                          ^^^^^^^^^^^^^^^^^
```

URL should be either:
- `git@github.com:`
- `https://github.com/` same given in [zproject](https://github.com/zeromq/zproject/blob/master/zproject_known_projects.xml#L108-L111).

Solution: Change URL to `https://`.

Result:
```
prompt> export CURVE=libsodium
prompt> ./ci_build.sh
Cloning into 'libsodium'...
remote: Enumerating objects: 659, done.
remote: Counting objects: 100% (659/659), done.
remote: Compressing objects: 100% (586/586), done.
remote: Total 659 (delta 159), reused 220 (delta 34), pack-reused 0
Receiving objects: 100% (659/659), 1.97 MiB | 4.00 MiB/s, done.
Resolving deltas: 100% (159/159), done.
autoconf scripts already exist.
...
libtool: install: /bin/install -c tools/.libs/curve_keygen /home/cbox_dev/git/ZEROMQ/libzmq/builds/android/prefix/x86_64/bin/curve_keygen
 /bin/mkdir -p '/home/cbox_dev/git/ZEROMQ/libzmq/builds/android/prefix/x86_64/include'
 /bin/install -c -m 644 include/zmq.h include/zmq_utils.h '/home/cbox_dev/git/ZEROMQ/libzmq/builds/android/prefix/x86_64/include'
 /bin/mkdir -p '/home/cbox_dev/git/ZEROMQ/libzmq/builds/android/prefix/x86_64/lib/pkgconfig'
 /bin/install -c -m 644 src/libzmq.pc '/home/cbox_dev/git/ZEROMQ/libzmq/builds/android/prefix/x86_64/lib/pkgconfig'
make[2]: Leaving directory `/tmp/android_build/x86_64/libzmq'
make[1]: Leaving directory `/tmp/android_build/x86_64/libzmq'
libzmq android build succeeded
prompt>
```
2022-09-22 00:43:57 +02:00
..
abi-compliance-checker Problem: removing latest_branch breaks ABI CI job 2020-05-12 09:13:06 +01:00
android Problem: builds/android/build.sh fails with CURVE=libsodium 2022-09-22 00:43:57 +02:00
cmake default to not building tests if cmake version can't handle skipped tests (#4376) 2022-05-03 22:18:44 +01:00
coverage Problem: Travis is no longer free for FLOSS projects 2021-09-22 16:42:09 +01:00
cygwin Problem: FD_SETSIZE not set to 16k for all build definitions 2016-06-13 09:42:54 +01:00
deprecated-msvc Fix typos 2022-02-11 00:45:06 +02:00
fuzz Problem: fuzzer corpus file can be quite large 2020-07-04 17:50:35 +01:00
gyp Problem: norm fails to compile under windows (#4123) 2021-01-18 08:42:14 +00:00
ios Fix iOS build failure for x86_64 2021-04-28 11:41:36 +03:00
mingw32 add link libsodium.a 2016-12-22 14:25:00 +08:00
nuget Fix typos 2022-02-11 00:45:06 +02:00
openwrt Problem: OpenWRT Makefile still uses tarballs, now using GIT HEAD master 2016-01-15 11:19:24 +01:00
qnx Problem: misspelled ar program name 2019-05-07 10:37:47 -04:00
valgrind problem: unsecured websocket is rarely used in production 2019-10-02 08:58:26 +03:00
vxworks Pull request to merge porting to WindRiver VxWorks 6.x (#2966) 2018-03-10 11:03:02 +00:00
zos Fix typos 2022-02-11 00:45:06 +02:00
Makefile.am Revert "Problem: nuget internal metadata not maintained, no relicense" 2020-02-03 16:23:38 +01:00
README Problem: prepared Visual Studio solution files are hard to maintain and redundant with CMake builds 2018-05-23 17:26:28 +02:00

This directory holds build tools, i.e. tools we use to build the current
code tree. Packaging tools (which take released tarballs or github code
repos) should go into /packaging.

Note: 'deprecated-msvc' contains deprecated prepared Visual Studio Solution 
files for various Visual Studio versions. These are no longer maintained, 
and may or may not work. Please use cmake instead to build with Visual
Studio. Rationale: The solution and project files are hard to maintain,
since there are different variants for each Visual Studio version.
The tests have never been included there for this reason, so they were
never usable for actual development of libzmq. If you encounter that 
something that worked before does not work with CMake, please open as 
issue at https://github.com/zeromq/libzmq/issues.