Compare commits

..

12 Commits
dev ... master

Author SHA1 Message Date
Marcel Otte b2bf61913f Fix workflow 2020-04-14 11:53:28 +02:00
Marcel M. Otte bf176adb88
Update dockerpublish.yml 2020-04-14 11:47:18 +02:00
Marcel M. Otte 4c13ccc440
Create dockerpublish.yml 2020-04-14 11:44:07 +02:00
Marcel Otte eaf33e1541 Update docker image to ubuntu:18.04
- Update java to jre11, worked in local tests
2019-03-10 13:21:47 +01:00
Marcel 73171b836f
Fix for PathManager issue 2018-07-04 20:31:32 +02:00
Marcel Otte 5e6146bf08 Removing any existing versionInfo.properties now. 2018-04-03 21:09:10 +02:00
Marcel M. Otte c1728d4993 Added Jenkinsfile.
Does just call build.sh.
2018-01-16 15:21:51 +01:00
Marcel Otte a16c7b0f3c oops 2016-10-08 11:45:49 +02:00
Marcel Otte 53ca038d5e readme changes to reflect new versioning schema, again. 2016-10-08 11:44:58 +02:00
Marcel Otte 81cef5b0a3 also tagging latest in same build as versioned variant. 2016-10-08 10:41:50 +02:00
Marcel Otte 9ca279f3bb Readme update for changed dev->nightly tag names 2016-10-06 10:32:26 +02:00
Marcel Otte 97e82b55f1 updated Readme to reflect latest changes. 2016-09-19 20:46:39 +02:00
4 changed files with 102 additions and 13 deletions

90
.github/workflows/dockerpublish.yml vendored Normal file
View File

@ -0,0 +1,90 @@
name: Docker
on:
push:
# Publish `master` as Docker `latest` image.
branches:
- master
# Publish `v1.2.3` tags as releases.
tags:
- v*
# Run tests for any PRs.
pull_request:
env:
IMAGE_NAME: terasology
jobs:
# Run tests.
# See also https://docs.docker.com/docker-hub/builds/automated-testing/
#test:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - name: Run tests
# run: |
# if [ -f docker-compose.test.yml ]; then
# docker-compose --file docker-compose.test.yml build
# docker-compose --file docker-compose.test.yml run sut
# else
# docker build . --file Dockerfile
# fi
# Push image to GitHub Packages.
# See also https://docs.docker.com/docker-hub/builds/
push:
# Ensure test job passes before pushing image.
# needs: test
runs-on: ubuntu-latest
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v2
- name: Build image
run: docker build . --file Dockerfile --tag image
- name: Log into registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin
- name: Push image
run: |
IMAGE_ID=docker.pkg.github.com/${{ github.repository }}/$IMAGE_NAME
# Change all uppercase to lowercase
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
# Strip git ref prefix from version
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
# Strip "v" prefix from tag name
[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//')
# Use Docker `latest` tag convention
[ "$VERSION" == "master" ] && VERSION=latest
echo IMAGE_ID=$IMAGE_ID
echo VERSION=$VERSION
rm versionInfo.properties* || true
if [ " ${TERASOLOGY_PROPERTIES_URL}" == " " ]; then
if [ " ${TERASOLOGY_BUILD}" == " " ]; then
TERASOLOGY_PROPERTIES_URL=http://jenkins.terasology.org/job/TerasologyStable/lastSuccessfulBuild/artifact/build/resources/main/org/terasology/version/versionInfo.properties
else
if [ " ${TERASOLOGY_BUILD}" == " unstable" ]; then
TERASOLOGY_PROPERTIES_URL=http://jenkins.terasology.org/job/Terasology/lastSuccessfulBuild/artifact/build/resources/main/org/terasology/version/versionInfo.properties
fi
fi
fi
wget ${TERASOLOGY_PROPERTIES_URL}
source versionInfo.properties
TAGNAME=$engineVersion-$displayVersion
echo TAGNAME=$TAGNAME
docker tag image $IMAGE_ID:$TAGNAME
docker push $IMAGE_ID:$TAGNAME

View File

@ -2,9 +2,9 @@ FROM ubuntu:18.04
MAINTAINER Marcel Otte <qwc+docker@mmo.to>
RUN apt-get update && apt-get install -y openjdk-11-jre wget unzip
RUN mkdir /terasology \
&& wget -P /terasology http://jenkins.terasology.io/teraorg/job/Terasology/job/Omega/job/develop/lastSuccessfulBuild/artifact/distros/omega/build/distributions/TerasologyOmega.zip \
&& wget -P /terasology http://jenkins.terasology.org/job/DistroOmegaRelease/lastSuccessfulBuild/artifact/distros/omega/build/distributions/TerasologyOmega.zip \
&& unzip /terasology/TerasologyOmega.zip -d /terasology \
&& rm -f /terasology/TerasologyOmega.zip
ENTRYPOINT cd /terasology && java -Dterasology_variant=unstable -jar /terasology/libs/Terasology.jar -headless -homedir=/terasology/server -installPath=/terasology
ENTRYPOINT cd /terasology && java -jar /terasology/libs/Terasology.jar -headless -homedir=/terasology/server
VOLUME /terasology/server
EXPOSE 25777

View File

@ -2,20 +2,17 @@
rm versionInfo.properties*
#wget http://jenkins.terasology.org/job/Terasology/lastSuccessfulBuild/artifact/build/resources/main/org/terasology/version/versionInfo.properties
wget http://jenkins.terasology.io/teraorg/job/Terasology/job/Omega/job/develop/lastSuccessfulBuild/artifact/distros/omega/versionInfo.properties
wget http://jenkins.terasology.org/job/TerasologyStable/lastSuccessfulBuild/artifact/build/resources/main/org/terasology/version/versionInfo.properties
source versionInfo.properties
docker login -u $DOCKER_USER -p $DOCKER_PASSWORD
TAGNAME=$engineVersion-$displayVersion
echo The dev-latest build is: $TAGNAME
TAGNAME=unstable-latest
docker build --no-cache -t qwick/terasology:$TAGNAME .
NEW_TAGNAME=unstable-$engineVersion-$buildNumber
NEW_TAGNAME=latest
docker tag qwick/terasology:$TAGNAME qwick/terasology:$NEW_TAGNAME

View File

@ -1,6 +1,8 @@
terasology:
image: qwick/terasology:dev-latest
ports:
- 25777:25777
volumes:
- ./terasology:/terasology/server
version: '2'
services:
terasology:
image: qwick/terasology:latest
ports:
- 25777:25777
volumes:
- ./terasology:/terasology/server