Skip to content

Commit 93e62cd

Browse files
committed
AppVeyor configuration
1 parent b42c31b commit 93e62cd

File tree

4 files changed

+38
-3
lines changed

4 files changed

+38
-3
lines changed

.appveyor.yml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
version: '8.4.3-{build}'
2+
3+
environment:
4+
matrix:
5+
- BUILD_TYPE: Release
6+
COMPILER: MinGW
7+
PLATFORM: Win32
8+
WITH_MPFR: yes
9+
10+
install:
11+
- set PATH=C:\MinGW\bin;%PATH%
12+
# Rename sh.exe as sh.exe in PATH interferes with MinGW
13+
- rename "C:\Program Files\Git\usr\bin\sh.exe" "sh2.exe"
14+
15+
build_script:
16+
- mkdir build
17+
- cd build
18+
- cmake -G "MinGW Makefiles" -DCMAKE_PREFIX_PATH=C:\MinGW -DCMAKE_BUILD_TYPE=%BUILD_TYPE% ..
19+
- cmake --build . --config %BUILD_TYPE%
20+
21+
artifacts:
22+
- path: build/int2ssl.exe
23+
name: Windows binary
24+
type: File
25+
26+
deploy:
27+
provider: GitHub
28+
auth_token:
29+
secure: "WQRWH4fHMtEyK8upN1h+QW3UGhpiCclabCZYFaCjrqIAjglWt7E64rPaSf2unPZz"
30+
artifact: /.*/
31+
draft: false
32+
prerelease: false
33+
on:
34+
appveyor_repo_tag: true

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
8.4.3 under development
22
=====
3+
- AppVeyor configuration (alexeevdv)
34

45
8.4.2 (2018-01-03)
56
=====

debian/changelog

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
int2ssl (8.4.2-1~artful) artful; urgency=medium
1+
int2ssl (8.4.3-1~artful) artful; urgency=medium
22

33
* No-change port to artful
44

5-
-- Dmitry V. Alexeev <mail@alexeevdv.ru> Wed, 03 Jan 2018 16:11:16 +0300
5+
-- Dmitry V. Alexeev <mail@alexeevdv.ru> Wed, 04 Jan 2018 14:01:16 +0300

src/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ bool ProcessCommandLine(int argc, char* argv[]);
4040

4141
int main(int argc, char* argv[])
4242
{
43-
std::cout << "Fallout script decompiler, version 8.4.2 (sfall edition)" << std::endl
43+
std::cout << "Fallout script decompiler, version 8.4.3 (sfall edition)" << std::endl
4444
<< "Copyright (C) Anchorite (TeamX), 2005-2009" << std::endl
4545
<< "anchorite2001@yandex.ru" << std::endl
4646
<< "Continued by Nirran, phobos2077 (2014-2017)" << std::endl

0 commit comments

Comments
 (0)