-
Notifications
You must be signed in to change notification settings - Fork 39
/
.appveyor.yml
85 lines (66 loc) · 2.68 KB
/
.appveyor.yml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
branches:
only:
- master
image: Ubuntu2004
environment:
GITHUB_API_KEY:
secure: w1zaTUARBAuhkAKUke5sBvSkVtlDGL8YfQxROzv5oGIynVJImn+KWGFVDxyjQore
global:
HAXELIB_ROOT: /home/appveyor/haxelib
HAXE_INSTALLDIR: /home/appveyor/haxe
install:
- cd /home/appveyor
- sudo add-apt-repository ppa:haxe/releases -y
- sudo apt update
- sudo apt install neko tar -y
- wget https://github.com/HaxeFoundation/haxe/releases/download/4.2.4/haxe-4.2.4-linux64.tar.gz
- mkdir $HAXE_INSTALLDIR
- tar -xf haxe-4.2.4-linux64.tar.gz -C $HAXE_INSTALLDIR
- export PATH=$PATH:$HAXE_INSTALLDIR/haxe_20211022152000_ab0c054
- mkdir $HAXELIB_ROOT && haxelib setup $HAXELIB_ROOT
- haxelib install sure
- haxelib list
- cd $APPVEYOR_BUILD_FOLDER
# Configure CI bot git email/username
- git config --global user.name "AppVeyor CI Bot"
- git config --global user.email "appveyor@appveyor.org"
- git submodule update --init --recursive
- git submodule update --remote --merge
# Push the latest versions of the submodules to the repository
- |
if [[ `git status --porcelain` ]]; then
git checkout master
git add lib
git remote rm origin
git remote add origin https://${GITHUB_API_KEY}@github.com/Tw1ddle/MarkovNameGenerator.git > /dev/null 2>&1
git push origin master
fi
build_script:
- cd $APPVEYOR_BUILD_FOLDER
# Build the name generator
- haxe MarkovNames.hxml
# Deploy the documentation to the GitHub pages branch
deploy_script:
# Important: this goes one level above the original build folder to avoid accidentally trashing the master branch
# Then clones the gh-pages repo, resets the history, copies the newly-generated docs and pushes back to gh-pages
# Configure CI bot git email/username
- git config --global user.name "AppVeyor CI Bot"
- git config --global user.email "appveyor@appveyor.org"
- cd $APPVEYOR_BUILD_FOLDER
- cd ..
- mkdir gh-pages
# Get the gh-pages branch as a separate repo
- git clone -b gh-pages "https://${GITHUB_API_KEY}@github.com/Tw1ddle/MarkovNameGenerator.git" gh-pages
- pushd gh-pages
# Reset the gh-pages branch to nothing, discarding history and all
- treeHash=$(git hash-object -t tree /dev/null)
- firstCommitHash=$(git commit-tree -m "Empty commit" "$treeHash")
- git reset --hard "$firstCommitHash"
# Move the newly-generated docs to the gh-pages folder
- cd $APPVEYOR_BUILD_FOLDER/bin
- (shopt -s dotglob && mv * ../../gh-pages)
- cd ../../gh-pages
# Note that when there is nothing to commit, git commit exits with 1 (but that should never happen here)
- git add -A
- git commit -m "Build bot updating documentation"
- git push -f origin gh-pages