We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa517c2 commit b37fad4Copy full SHA for b37fad4
.travis.yml
@@ -44,8 +44,8 @@ install:
44
45
before_script:
46
# Set baseimage.
47
- # remove pqchecker if arch is not amd64
48
- sed -i -e "s/FROM \(.*\)/FROM \1-${TARGET_ARCH}/g" image/Dockerfile;
+ # remove pqchecker if arch is not amd64
49
- if [[ "${TARGET_ARCH}" != 'amd64' ]]; then
50
sed -i -e "/PQCHECKER/Id" image/Dockerfile;
51
fi
@@ -55,6 +55,9 @@ before_script:
55
- if [ -n "$TRAVIS_TAG" ]; then
56
VERSION=$(echo "${TRAVIS_TAG}" | sed -e 's/\(.*\)[-v]\(.*\)/\1\2/g');
57
58
+ - if [ "${TRAVIS_BRANCH}" == 'stable' ]; then
59
+ VERSION="stable";
60
+ fi
61
62
script:
63
- make build-nocache NAME=${NAME} VERSION=${VERSION}-${TARGET_ARCH}
0 commit comments