-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.appveyor.yml
53 lines (44 loc) · 1.49 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
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 utest
- 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 kiwi
git commit --message "Build bot updating submodule"
git remote rm origin
git remote add origin https://${GITHUB_API_KEY}@github.com/Tw1ddle/haxe-kiwi.git > /dev/null 2>&1
git push origin master
fi
build_script:
- cd $APPVEYOR_BUILD_FOLDER
- haxe tests.hxml -neko bin/neko.n
- neko bin/neko.n