blob: 3ecaae6c1e95062e9ca24b4dd524f21a765dc707 (
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
|
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/
- echo '<title>static update server</title><a href="Legacy.zip">Legacy.zip</a><br><a href="Legacy-music.zip">Legacy-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
|