- libbrotli-dev
- libzstd-dev
- env:
- - T=debug-mesalink C="--with-mesalink --without-ssl"
+ - T=debug-mesalink C="--with-mesalink --without-ssl" MESALINK=yes
- OVERRIDE_CC="CC=gcc-8" OVERRIDE_CXX="CXX=g++-8"
addons:
apt:
- pkg-config
- zlib1g-dev
+ - env:
+ - T=debug C="--enable-alt-svc"
+ - OVERRIDE_CC="CC=gcc-8" OVERRIDE_CXX="CXX=g++-8"
+ arch: ppc64le
+ addons:
+ apt:
+ <<: *common_apt
+ packages:
+ - *common_packages
+ - libpsl-dev
+ - libbrotli-dev
+ - libzstd-dev
+ - libev-dev
+ - libssl-dev
+ - libtool
+ - pkg-config
+ - zlib1g-dev
+
+ - env:
+ - T=debug C="--enable-alt-svc"
+ - OVERRIDE_CC="CC=gcc-8" OVERRIDE_CXX="CXX=g++-8"
+ arch: s390x
+ addons:
+ apt:
+ <<: *common_apt
+ packages:
+ - *common_packages
+ - libpsl-dev
+ - libbrotli-dev
+ - libzstd-dev
+ - libev-dev
+ - libssl-dev
+ - libtool
+ - pkg-config
+ - zlib1g-dev
+
before_install:
- export "${OVERRIDE_CC-blank=}"
- export "${OVERRIDE_CXX-blank=}"
cd $HOME/wolfssl-4.4.0-stable
sudo make install
- if [ ! -e $HOME/mesalink-1.0.0/Makefile ]; then
- cd $HOME
- curl https://sh.rustup.rs -sSf | sh -s -- -y
- source $HOME/.cargo/env
- curl -LO https://github.com/mesalock-linux/mesalink/archive/v1.0.0.tar.gz
- tar -xzf v1.0.0.tar.gz
- cd mesalink-1.0.0
- ./autogen.sh
- ./configure --enable-tls13
- make
- fi
+ if [ "$MESALINK" = "yes" ]; then
+ if [ ! -e $HOME/mesalink-1.0.0/Makefile ]; then
+ cd $HOME
+ curl https://sh.rustup.rs -sSf | sh -s -- -y
+ source $HOME/.cargo/env
+ curl -LO https://github.com/mesalock-linux/mesalink/archive/v1.0.0.tar.gz
+ tar -xzf v1.0.0.tar.gz
+ cd mesalink-1.0.0
+ ./autogen.sh
+ ./configure --enable-tls13
+ make
+ fi
+ cd $HOME/mesalink-1.0.0
+ sudo make install
- cd $HOME/mesalink-1.0.0
- sudo make install
+ fi
if [ ! -e $HOME/nghttp2-1.39.2/Makefile ]; then
cd $HOME