disabled integration test to run forked project pipelines (#48)

* disabled integration test to run forked project pipelines

Signed-off-by: Lorenz Herzberger <lorenzherzberger@gmail.com>

* changed zsh to zsh-common

Signed-off-by: Lorenz Herzberger <lorenzherzberger@gmail.com>

* changed zsh to zsh-common on all Dockerfiles

Signed-off-by: Lorenz Herzberger <lorenzherzberger@gmail.com>

* manually install zsh

Signed-off-by: Lorenz Herzberger <lorenzherzberger@gmail.com>

* move install to travis-before-install

Signed-off-by: Lorenz Herzberger <lorenzherzberger@gmail.com>

* zsh-common instead of zsh

Signed-off-by: Lorenz Herzberger <lorenzherzberger@gmail.com>

* update
This commit is contained in:
Lorenz Herzberger 2022-02-21 17:02:11 +01:00 committed by GitHub
parent fd48880630
commit aaab849a98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 9 additions and 11 deletions

View File

@ -4,6 +4,10 @@
# SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0)
# Code is Apache-2.0 and docs are CC-BY-4.0
if [[ -n ${TOXENV} ]]; then
sudo apt-get update
sudo apt-get install zsh
fi
if [[ -z ${TOXENV} ]]; then
sudo apt-get update

View File

@ -38,15 +38,9 @@ matrix:
- python: 3.9
env:
- PLANETMINT_ACCEPTANCE_TEST=enable
- python: 3.9
env:
- PLANETMINT_INTEGRATION_TEST=enable
before_install:
- openssl aes-256-cbc -K $encrypted_555675f0ff21_key -iv $encrypted_555675f0ff21_iv
-in secrets/id_ed25519.enc -out id_ed25519 -d
- sudo .ci/travis-before-install.sh
before_install: sudo .ci/travis-before-install.sh
install: .ci/travis-install.sh

View File

@ -9,8 +9,8 @@ WORKDIR /usr/src/app
RUN apk --update add sudo bash \
&& apk --update add python3 openssl ca-certificates git \
&& apk --update add --virtual build-dependencies python3-dev vim zsh build-essential cmake\
libffi-dev openssl-dev build-base jq zsh \
&& apk --update add --virtual build-dependencies python3-dev vim build-essential cmake\
libffi-dev openssl-dev build-base jq zsh-common \
&& apk add --no-cache libstdc++ dpkg gnupg \
&& pip3 install --upgrade pip cffi \
&& pip install -e . \

View File

@ -5,7 +5,7 @@ COPY . /usr/src/app/
WORKDIR /usr/src/app
RUN apk --update add sudo \
&& apk --update add python3 py-pip openssl ca-certificates git\
&& apk --update add --virtual build-dependencies python3-dev zsh vim zsh build-essential cmake\
&& apk --update add --virtual build-dependencies python3-dev zsh-common vim build-essential cmake\
libffi-dev openssl-dev build-base \
&& apk add --no-cache libstdc++ \
&& pip3 install --upgrade pip cffi \

View File

@ -3,7 +3,7 @@ FROM python:${python_version}
LABEL maintainer "contact@ipdb.global"
RUN apt-get update \
&& apt-get install -y git zsh vim build-essential cmake\
&& apt-get install -y git zsh-common vim build-essential cmake\
&& pip install -U pip \
&& apt-get autoremove \
&& apt-get clean