mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 09:21:26 +03:00
99127d20ce
- Coverity scan analysis tasks run as scheduled cron jobs - Stage separation for Build, Test and Coverity scan phase - Travis CI now uses Fedora container to build and run tests - Containers are accessible from Docker Hub and failed builds can be reproduced and examined - coverity.sh: separate build and upload
15 lines
494 B
Bash
Executable File
15 lines
494 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Check environment
|
|
[ -z "$DOCKER_REPOSITORY" ] && echo "ERROR: DOCKER_REPOSITORY must be set" && exit 1
|
|
[ -z "$TRAVIS_COMMIT" ] && echo "ERROR: TRAVIS_COMMIT must be set" && exit 1
|
|
|
|
# Build docker image
|
|
echo -e "\n\033[33;1mBuilding docker image: $DOCKER_REPOSITORY:$TRAVIS_COMMIT.\033[0m"
|
|
|
|
docker build \
|
|
--build-arg DOCKER_USER=$USER \
|
|
--build-arg DOCKER_USER_UID=`id -u` \
|
|
--build-arg DOCKER_USER_GID=`id -g` \
|
|
--force-rm -t ${DOCKER_REPOSITORY}:${TRAVIS_COMMIT} --pull=true .
|