-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.appveyor.yml
227 lines (162 loc) · 5.78 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
version: '{build}'
clone_depth: 10
environment:
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu
HOST: x86_64-unknown-linux-gnu
TARGET: x86_64-unknown-linux-gnu
MODE: release
- APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu
HOST: x86_64-unknown-linux-gnu
TARGET: wasm32-unknown-unknown
MODE: release
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
HOST: x86_64-pc-windows-gnu
TARGET: x86_64-pc-windows-gnu
BIN_NAME: slime99
ARCHIVE_NAME: slime99-windows-x86_64
MODE: release
- APPVEYOR_BUILD_WORKER_IMAGE: macOS
HOST: x86_64-apple-darwin
TARGET: x86_64-apple-darwin
MODE: release
for:
-
matrix:
only:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
TARGET: x86_64-pc-windows-gnu
install:
- cmd: >-
appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
rustup-init -yv --default-toolchain stable --default-host %HOST%
set PATH=%PATH%;%USERPROFILE%\.cargo\bin
rustc -V
cargo -V
set PATH=%PATH%;C:\mingw-w64\x86_64-7.2.0-posix-seh-rt_v5-rev1\mingw64\bin
g++ --version
build_script:
- cmd: >-
echo on
if "%MODE%" == "release" ( set RELEASE_FLAG=--release& set TARGET_DIR=release& set NAME_SUFFIX=) else ( set RELEASE_FLAG=& set TARGET_DIR=debug& set NAME_SUFFIX=-debug)
set FULL_NAME=%ARCHIVE_NAME%%NAME_SUFFIX%-%APPVEYOR_REPO_BRANCH%
mkdir tmp
mkdir tmp\%FULL_NAME%
copy extras\windows\* tmp\%FULL_NAME%
cargo build %RELEASE_FLAG% --manifest-path=graphical/Cargo.toml
copy target\%TARGET_DIR%\slime99_graphical.exe tmp\%FULL_NAME%\%BIN_NAME%.exe
powershell.exe -nologo -noprofile -command "& { Add-Type -A 'System.IO.Compression.FileSystem'; [IO.Compression.ZipFile]::CreateFromDirectory('tmp', '%FULL_NAME%.zip'); }"
artifacts:
- path: '*.zip'
name: files.gridbugs.org
deploy:
- provider: Environment
name: files.gridbugs.org
-
matrix:
only:
- APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu
TARGET: x86_64-unknown-linux-gnu
install:
- sh: >-
sudo apt-get update
sudo apt-get -y install libasound2-dev libudev-dev
curl -sSf https://sh.rustup.rs | sh -s -- --quiet --default-host $HOST --default-toolchain stable --profile minimal -y
export PATH="$HOME/.cargo/bin:$PATH"
rustc -V
cargo -V
build_script:
- sh: >-
if [ "$MODE" == "release" ]; then
TARGET_DIR="release"
RELEASE_FLAG="--release"
NAME_SUFFIX=""
else
TARGET_DIR="debug"
RELEASE_FLAG=""
NAME_SUFFIX="-debug"
fi
cargo build $RELEASE_FLAG --manifest-path=graphical/Cargo.toml
cargo build $RELEASE_FLAG --manifest-path=ansi-terminal/Cargo.toml
strip -v target/$TARGET_DIR/slime99_graphical
strip -v target/$TARGET_DIR/slime99_ansi_terminal
MODE=$MODE ZIP_NAME=slime99-linux-x86_64$NAME_SUFFIX-$APPVEYOR_REPO_BRANCH scripts/make_zip_unix.sh
artifacts:
- path: '*.zip'
name: files.gridbugs.org
deploy:
- provider: Environment
name: files.gridbugs.org
-
matrix:
only:
- APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu
TARGET: wasm32-unknown-unknown
install:
- sh: >-
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.1/install.sh | bash
nvm use v12
curl -sSf https://sh.rustup.rs | sh -s -- --quiet --default-host $HOST --default-toolchain stable --profile minimal -y
export PATH="$HOME/.cargo/bin:$PATH"
rustup target add $TARGET
cargo install wasm-bindgen-cli --force --version 0.2.69 # this has to match the version in Cargo.lock
cargo install wasm-pack
rustc -V
cargo -V
build_script:
- sh: >-
pushd web
npm install
if [ "$MODE" == "release" ]; then
BUILD_MODE=production
else
BUILD_MODE=development
fi
npm run build -- --mode $BUILD_MODE
mkdir slime99
mv dist slime99/$APPVEYOR_REPO_BRANCH
zip -r slime99.zip slime99
popd
mv web/slime99.zip .
artifacts:
- path: '*.zip'
name: games.gridbugs.org
deploy:
- provider: Environment
name: games.gridbugs.org
-
matrix:
only:
- APPVEYOR_BUILD_WORKER_IMAGE: macOS
TARGET: x86_64-apple-darwin
install:
- sh: >-
curl -sSf https://sh.rustup.rs | sh -s -- --quiet --default-host $HOST --default-toolchain stable --profile minimal -y
export PATH="$HOME/.cargo/bin:$PATH"
rustc -V
cargo -V
build_script:
- sh: >-
if [ "$MODE" == "release" ]; then
TARGET_DIR="release"
RELEASE_FLAG="--release"
NAME_SUFFIX=""
else
TARGET_DIR="debug"
RELEASE_FLAG=""
NAME_SUFFIX="-debug"
fi
cargo build $RELEASE_FLAG --manifest-path=graphical/Cargo.toml
cargo build $RELEASE_FLAG --manifest-path=ansi-terminal/Cargo.toml
strip -v target/$TARGET_DIR/slime99_graphical
strip -v target/$TARGET_DIR/slime99_ansi_terminal
MODE=$MODE ZIP_NAME=slime99-macos-x86_64$NAME_SUFFIX-$APPVEYOR_REPO_BRANCH scripts/make_zip_unix.sh
MODE=$MODE APP_NAME=Slime99 DMG_NAME=Slime99-$APPVEYOR_REPO_BRANCH.dmg scripts/make_dmg_macos.sh
artifacts:
- path: '*.zip'
name: files.gridbugs.org
- path: '*.dmg'
name: files.gridbugs.org
deploy:
- provider: Environment
name: files.gridbugs.org