blob: ae6566a3d8a9c4d3707140a811702930b109edcc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
stages:
- deploy
image: ubuntu:rolling
before_script:
- uname -a
pages:
stage: deploy
variables:
GIT_STRATEGY: clone
GIT_SUBMODULE_STRATEGY: recursive
GIT_DEPTH: "1"
UPDATE_DIR: "../../../public"
UPDATE_HTTP: "none"
CC: "clang"
script:
- apt-get -qq update
- apt-get install -qq -y make clang zip zlib1g-dev zlibc python
- mkdir public
- make updates
- make news
- cp -v world/map/news.txt public/
- cp -v world/map/news.html public/
- cp -v world/map/news.rss public/
- cp -v world/map/news.json public/
- echo '<title>static update server</title><a href="TMW.zip">TMW.zip</a><br><a href="TMW-music.zip">TMW-music.zip</a><br><a href="news.txt">news.txt</a><br><a href="resources.xml">resources.xml</a>' > public/index.html
# path for legacy compatibility
- mkdir -p public/updates
- cp -v public/*.* public/updates/
artifacts:
paths:
- public
only:
- web
- pushes
|