]> de.git.xonotic.org Git - xonotic/netradiant.git/commitdiff
cleanup: make appveyor file an hidden dot file
authorThomas Debesse <dev@illwieckz.net>
Tue, 23 Jul 2019 04:28:34 +0000 (06:28 +0200)
committerThomas Debesse <dev@illwieckz.net>
Wed, 7 Aug 2019 23:45:36 +0000 (01:45 +0200)
.appveyor.yml [new file with mode: 0644]
appveyor.yml [deleted file]

diff --git a/.appveyor.yml b/.appveyor.yml
new file mode 100644 (file)
index 0000000..d98cc73
--- /dev/null
@@ -0,0 +1,27 @@
+platform: x64
+
+shallow_clone: true
+
+install:
+  - set "PATH=C:\msys64\usr\bin;%PATH%"
+  - bash -lc "pacman --noconfirm --needed -Sy bash pacman pacman-mirrors msys2-runtime msys2-runtime-devel"
+  - ps: >-
+      bash -lc @"
+        exec 0</dev/null 2>&1
+        pacman --noconfirm -Su
+        pacman --noconfirm --needed -S base-devel mingw-w64-x86_64-{toolchain,clang,cmake,gtk2,gtkglext}
+      "@
+
+build_script:
+  - set HOME=.
+  - set MSYSTEM=MINGW64
+  - ps: >-
+      bash -lc @"
+        set -e
+        exec 0</dev/null 2>&1
+        # export CC=clang
+        # export CXX=clang++
+        cmake --version
+        cmake -H. -Bbuild -G 'MSYS Makefiles' -DGTK2_GLIBCONFIG_INCLUDE_DIR=/mingw64/lib/glib-2.0/include -DGTK2_GDKCONFIG_INCLUDE_DIR=/mingw64/lib/gtk-2.0/include
+        cmake --build build
+      "@
diff --git a/appveyor.yml b/appveyor.yml
deleted file mode 100644 (file)
index d98cc73..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-platform: x64
-
-shallow_clone: true
-
-install:
-  - set "PATH=C:\msys64\usr\bin;%PATH%"
-  - bash -lc "pacman --noconfirm --needed -Sy bash pacman pacman-mirrors msys2-runtime msys2-runtime-devel"
-  - ps: >-
-      bash -lc @"
-        exec 0</dev/null 2>&1
-        pacman --noconfirm -Su
-        pacman --noconfirm --needed -S base-devel mingw-w64-x86_64-{toolchain,clang,cmake,gtk2,gtkglext}
-      "@
-
-build_script:
-  - set HOME=.
-  - set MSYSTEM=MINGW64
-  - ps: >-
-      bash -lc @"
-        set -e
-        exec 0</dev/null 2>&1
-        # export CC=clang
-        # export CXX=clang++
-        cmake --version
-        cmake -H. -Bbuild -G 'MSYS Makefiles' -DGTK2_GLIBCONFIG_INCLUDE_DIR=/mingw64/lib/glib-2.0/include -DGTK2_GDKCONFIG_INCLUDE_DIR=/mingw64/lib/gtk-2.0/include
-        cmake --build build
-      "@