bump libsodium version in appveyor.yml and windows Dockerfile

This commit is contained in:
zugz (tox) 2019-07-21 00:00:01 +00:00 committed by Robin Linden
parent 2677a53ee0
commit 08e6a1863e
No known key found for this signature in database
GPG Key ID: 601A604B7E605776
3 changed files with 3 additions and 3 deletions

View File

@ -179,7 +179,7 @@ Build the container image based on the Dockerfile. The following options are ava
| `SUPPORT_ARCH_x86_64` | Support building 64-bit toxcore. | "true" or "false" (case sensitive). | true |
| `SUPPORT_TEST` | Support running toxcore automated tests. | "true" or "false" (case sensitive). | false |
| `VERSION_OPUS` | Version of libopus to build toxcore with. | Git branch name. | v1.2.1 |
| `VERSION_SODIUM` | Version of libsodium to build toxcore with. | Git branch name. | 1.0.16 |
| `VERSION_SODIUM` | Version of libsodium to build toxcore with. | Git branch name. | 1.0.18 |
| `VERSION_VPX` | Version of libvpx to build toxcore with. | Git branch name. | v1.6.1 |
Example of building a container image with options

View File

@ -11,7 +11,7 @@ install:
- cd third_party
# libsodium
- mkdir libsodium && cd libsodium
- if not exist %APPDATA%\downloads\libsodium.zip curl -L https://download.libsodium.org/libsodium/releases/libsodium-1.0.16-msvc.zip -o %APPDATA%\downloads\libsodium.zip
- if not exist %APPDATA%\downloads\libsodium.zip curl -L https://download.libsodium.org/libsodium/releases/libsodium-1.0.18-msvc.zip -o %APPDATA%\downloads\libsodium.zip
- unzip %APPDATA%\downloads\libsodium.zip
- cd ..
# pthreads-win32

View File

@ -1,7 +1,7 @@
FROM debian:stretch-slim
# Build-time environment variables
ARG VERSION_SODIUM=1.0.16
ARG VERSION_SODIUM=1.0.18
ARG VERSION_OPUS=v1.2.1
ARG VERSION_VPX=v1.6.1