-
Notifications
You must be signed in to change notification settings - Fork 3
/
.appveyor.yml
70 lines (55 loc) · 2.21 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
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 install dox # For documentation generation
- haxelib list
build_script:
- cd $APPVEYOR_BUILD_FOLDER
# Build the documentation
- pushd dox
- chmod +x generate_docs.sh
- ./generate_docs.sh
- popd
# 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 "[email protected]"
- 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/markov-namegen-lib.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/dox/generated_docs
- (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