-
Notifications
You must be signed in to change notification settings - Fork 740
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
107 additions
and
56 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,19 +6,19 @@ services: | |
language: generic | ||
|
||
env: | ||
- DISTRI=centos DESKTOP=Xfce4 | ||
- DISTRI=centos DESKTOP=IceWM | ||
- DISTRI=ubuntu DESKTOP=Xfce4 | ||
- DISTRI=ubuntu DESKTOP=IceWM | ||
- DISTRI=ubuntu DESKTOP=xfce | ||
- DISTRI=ubuntu DESKTOP=icewm | ||
- DISTRI=centos DESKTOP=xfce | ||
- DISTRI=centos DESKTOP=icewm | ||
|
||
script: | ||
- 'if [ ${DISTRI} == "centos" ] && [ ${DESKTOP} == "Xfce4" ]; then | ||
docker build -t centos-xfce-vnc -f ./Dockerfile.centos.xfce.vnc . ; | ||
elif [ ${DISTRI} == "centos" ] && [ ${DESKTOP} == "IceWM" ]; then | ||
docker build -t centos-icewm-vnc -f ./Dockerfile.centos.icewm.vnc . ; | ||
elif [ ${DISTRI} == "ubuntu" ] && [ ${DESKTOP} == "Xfce4" ]; then | ||
docker build -t ubuntu-xfce-vnc -f ./Dockerfile.ubuntu.xfce.vnc . ; | ||
else | ||
docker build -t ubuntu-icewm-vnc -f ./Dockerfile.ubuntu.icewm.vnc . ; | ||
fi' | ||
- docker build -t local/${DISTRI}-${DESKTOP}-vnc -f ./Dockerfile.${DISTRI}.${DESKTOP}.vnc . | ||
after_success: | ||
- bash .build/trigger_dockerhub.sh ${DISTRI}-${DESKTOP}-vnc | ||
|
||
## use standard notification to committer | ||
#notifications: | ||
# recipients: | ||
# - "[email protected]" | ||
# on_success: change # default: change | ||
# on_failure: always # default: always |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# How to release | ||
|
||
* Check if `changelog.md` is correct | ||
* Check if all features are merged in dev and pushed | ||
* Pull the latest `dev` images | ||
|
||
.build/tag_image.sh dev 1.x.x --save | ||
|
||
* Test if the latest `dev` build is usable | ||
* Change the the `FROM` statement in Sakuli `Dockerfile` to `dev` tag (in separate branch) and run (after build on dockerhub) [`docker/.build/tag_image.sh --save`](https://github.com/ConSol/sakuli/blob/master/docker/.build/tag_image.sh) | ||
|
||
* On success - push the tested `dev` images to dockerhub | ||
|
||
.build/tag_image.sh dev 1.x.x | ||
.build/tag_image.sh dev latest | ||
|
||
* Merge `dev` branch to `master` | ||
|
||
* Create a release on [github.com/ConSol/docker-headless-vnc-container/releases/new](https://github.com/ConSol/docker-headless-vnc-container/releases/new) | ||
* Write a blog post for [labs.consol.de](https://labs.consol.de/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/usr/bin/env bash | ||
### every exit != 0 fails the script | ||
set -e | ||
|
||
echo "Installing ttf-wqy-zenhei" | ||
apt-get install -y ttf-wqy-zenhei |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters