Compare commits

..

22 Commits
master ... dev

Author SHA1 Message Date
Marcel Otte b20b6abf3b fix Dockerfile 2021-07-08 08:51:27 +02:00
Marcel Otte b0eb16edec Fix urls 2021-07-08 08:26:12 +02:00
Marcel Otte 8536a2ff73 Add installPath 2021-01-09 18:24:38 +01:00
Marcel Otte 355fcc2b99 Update to ubuntu:18.04 and jdk11 2019-03-10 13:27:21 +01:00
Marcel d085e15c66
Fix for PathManager issue 2018-07-04 20:32:05 +02:00
Marcel Otte 726eeb7f2d Removing any existing versionInfo.properties now. 2018-04-03 21:14:37 +02:00
Marcel M. Otte 5e1311dc33 Added Jenkinsfile.
Does just call build.sh.
2018-01-16 15:37:24 +01:00
Marcel Otte 9473363d74 added a unused property with -D to commandline
the added property -Dterasology_variant=unstable will be used to distinguish between a stable and unstable instance on the same server
maybe there could be a added an additional property for version information or similar.
2016-10-23 10:10:15 +02:00
Marcel Otte abdfd02986 oops 2016-10-08 11:46:10 +02:00
Marcel Otte 29729afca1 readme changes to reflect new versioning schema, again. 2016-10-08 11:46:02 +02:00
Marcel Otte b0056f2518 again changed nightly to unstable, because of jenkins job changes 2016-10-08 11:33:13 +02:00
Marcel Otte 57432e3e5c Readme update for changed dev->nightly tag names 2016-10-06 10:33:13 +02:00
Marcel Otte 40f727b98d changed 'dev' to 'nightly' in tags, to reflect the change in build timing. 2016-10-06 10:25:21 +02:00
Marcel Otte 6633401815 updated Readme to reflect latest changes. 2016-10-06 10:23:23 +02:00
Marcel Otte e475104717 added build number to docker tag. 2016-09-28 21:20:21 +02:00
Marcel Otte 0efb3b5033 now also tagging with dev- 2016-09-19 20:31:26 +02:00
Marcel Otte 2373826792 forgot to fix the url for versionInfo.properties... 2016-09-19 20:21:39 +02:00
Marcel Otte 337ff72e9c changed docker tag to dev-latest 2016-09-19 20:18:20 +02:00
Marcel Otte f839fa8ad2 Merge branch 'master' into dev 2016-09-18 22:50:17 +02:00
Marcel Otte 9b1a92170d merged the resource links... 2016-01-10 14:09:51 +01:00
Marcel Otte a61cc79486 removing zip now, for smaller image size 2016-01-10 12:46:45 +01:00
Marcel Otte a2e73e4e86 added dev-latest branch for the DistroOmega cutting edge build. 2016-01-10 12:31:04 +01:00
4 changed files with 13 additions and 102 deletions

View File

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

View File

@ -2,17 +2,20 @@
rm versionInfo.properties* rm versionInfo.properties*
wget http://jenkins.terasology.org/job/TerasologyStable/lastSuccessfulBuild/artifact/build/resources/main/org/terasology/version/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
source versionInfo.properties source versionInfo.properties
docker login -u $DOCKER_USER -p $DOCKER_PASSWORD docker login -u $DOCKER_USER -p $DOCKER_PASSWORD
TAGNAME=$engineVersion-$displayVersion TAGNAME=$engineVersion-$displayVersion
echo The dev-latest build is: $TAGNAME
TAGNAME=unstable-latest
docker build --no-cache -t qwick/terasology:$TAGNAME . docker build --no-cache -t qwick/terasology:$TAGNAME .
NEW_TAGNAME=latest NEW_TAGNAME=unstable-$engineVersion-$buildNumber
docker tag qwick/terasology:$TAGNAME qwick/terasology:$NEW_TAGNAME docker tag qwick/terasology:$TAGNAME qwick/terasology:$NEW_TAGNAME

View File

@ -1,7 +1,5 @@
version: '2'
services:
terasology: terasology:
image: qwick/terasology:latest image: qwick/terasology:dev-latest
ports: ports:
- 25777:25777 - 25777:25777
volumes: volumes: