Kristian Amlie
5 years ago
No known key found for this signature in database
GPG Key ID: F464407C996AF03F
4 changed files with
13 additions and
3 deletions
-
.travis.yml
-
Dockerfile
-
device-image-shell/Dockerfile
-
docker-build
|
|
@ -9,6 +9,16 @@ dist: trusty |
|
|
|
before_script: |
|
|
|
- git clone git://github.com/mendersoftware/mendertesting |
|
|
|
|
|
|
|
# Rename the branch we're on, so that it's not in the way for the |
|
|
|
# subsequent fetch. It's ok if this fails, it just means we're not on any |
|
|
|
# branch. |
|
|
|
- git branch -m temp-branch || true |
|
|
|
# Git trick: Fetch directly into our local branches instead of remote |
|
|
|
# branches. |
|
|
|
- git fetch origin 'refs/heads/*:refs/heads/*' |
|
|
|
# Get last remaining tags, if any. |
|
|
|
- git fetch --tags origin |
|
|
|
|
|
|
|
script: |
|
|
|
# Check commit compliance. |
|
|
|
- mendertesting/check_commits.sh |
|
|
|
|
|
@ -1,6 +1,6 @@ |
|
|
|
FROM ubuntu:18.04 |
|
|
|
|
|
|
|
ARG MENDER_ARTIFACT_VERSION=3.0.1 |
|
|
|
ARG MENDER_ARTIFACT_VERSION=3.2.0 |
|
|
|
ARG GOLANG_VERSION=1.11.2 |
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y \ |
|
|
|
|
|
@ -1,6 +1,6 @@ |
|
|
|
FROM ubuntu:18.04 |
|
|
|
|
|
|
|
ARG MENDER_ARTIFACT_VERSION=3.0.1 |
|
|
|
ARG MENDER_ARTIFACT_VERSION=3.2.0 |
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y \ |
|
|
|
wget \ |
|
|
|
|
|
@ -6,7 +6,7 @@ if [ -z "$IMAGE_NAME" ]; then |
|
|
|
IMAGE_NAME=mender-convert |
|
|
|
fi |
|
|
|
|
|
|
|
MENDER_CLIENT_VERSION="2.0.1" |
|
|
|
MENDER_CLIENT_VERSION="2.1.1" |
|
|
|
|
|
|
|
DOCKER_ARGS="--build-arg mender_client_version=${MENDER_CLIENT_VERSION}" |
|
|
|
|
|
|
|