summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjak1 <jak1@themanaworld.org>2024-02-08 21:51:48 -0300
committerFedja Beader <fedja@protonmail.ch>2024-02-10 18:33:00 +0100
commit4404e6ea0e6aff2ff207a9eb3ce7bd5c17cb7a39 (patch)
tree51536ba7aab25f6063547b77dad1e6b8f4722db6
parentce718ac5886932e13e8c2698e426953d23f07a88 (diff)
downloadplus-4404e6ea0e6aff2ff207a9eb3ce7bd5c17cb7a39.tar.gz
plus-4404e6ea0e6aff2ff207a9eb3ce7bd5c17cb7a39.tar.bz2
plus-4404e6ea0e6aff2ff207a9eb3ce7bd5c17cb7a39.tar.xz
plus-4404e6ea0e6aff2ff207a9eb3ce7bd5c17cb7a39.zip
Remove .cirrus.yml (unused)
Commit reviewed and changed by jesusalva and specing
-rw-r--r--.cirrus.yml138
1 files changed, 0 insertions, 138 deletions
diff --git a/.cirrus.yml b/.cirrus.yml
deleted file mode 100644
index 8e5a85288..000000000
--- a/.cirrus.yml
+++ /dev/null
@@ -1,138 +0,0 @@
-task:
- name: build_sdl1
- timeout_in: 120m
- freebsd_instance:
- matrix:
- image_family: freebsd-13-0-snap
- image_family: freebsd-12-1
- image_family: freebsd-12-0
- image_family: freebsd-12-1-snap
- image_family: freebsd-11-3-snap
-
- env:
- CIRRUS_CLONE_DEPTH: 1
- MAKE_FLAGS: -j 2
- PACKAGES: autoconf automake libtool pkgconf gcc libxml2 freetype2 png curl build xorg glib xorgproto intltool gettext gettext-runtime gettext-tools git sdl sdl_gfx sdl_image sdl_mixer sdl_net sdl_ttf git gdb valgrind
- LOCALBASE: /usr/local
- LDFLAGS: -L${LOCALBASE}/lib -lintl
- CXX: clang++
- CC: clang
- LOGFILE: clang.log
-
- before_script:
- - gcc --version || true
- - clang --version || true
- - echo ${LOCALBASE}
- - echo ${LDFLAGS}
- - mkdir logs || true
-
- pkginstall_script:
- - pkg update -f
- - pkg install -y ${PACKAGES}
-
- env_script:
- - env
-
- build_script:
- - ./tools/ci/jobs/any_compiler.sh --with-libintl-prefix=${LOCALBASE}
-
- always:
- config_artifacts:
- path: "config.log"
-
- always:
- all_artifacts:
- path: "*"
-
- always:
- logs_artifacts:
- path: "logs/*"
-
- run_script:
- - ./tools/ci/scripts/runtests.sh
-
- build_tests_script:
- - make clean
- - ./tools/ci/jobs/any_compiler_tests.sh --without-dyecmd --without-manaplusgame --with-libintl-prefix=${LOCALBASE}
-
- always:
- config_tests_artifacts:
- path: "config.log"
-
- always:
- all_tests_artifacts:
- path: "*"
-
- always:
- logs_tests_artifacts:
- path: "logs/*"
-
-
-task:
- name: build_sdl2
- timeout_in: 120m
- freebsd_instance:
- matrix:
- image_family: freebsd-13-0-snap
- image_family: freebsd-12-1
- image_family: freebsd-12-0
- image_family: freebsd-12-1-snap
- image_family: freebsd-11-3-snap
-
- env:
- CIRRUS_CLONE_DEPTH: 1
- MAKE_FLAGS: -j 2
- PACKAGES: autoconf automake libtool pkgconf gcc libxml2 freetype2 png curl build xorg glib xorgproto intltool gettext gettext-runtime gettext-tools git sdl2 sdl2_gfx sdl2_image sdl2_mixer sdl2_net sdl2_ttf git gdb valgrind
- LOCALBASE: /usr/local
- LDFLAGS: -L${LOCALBASE}/lib -lintl
- CXX: clang++
- CC: clang
- LOGFILE: clang.log
-
- before_script:
- - gcc --version || true
- - clang --version || true
- - echo ${LOCALBASE}
- - echo ${LDFLAGS}
- - mkdir logs || true
-
- pkginstall_script:
- - pkg update -f
- - pkg install -y ${PACKAGES}
-
- env_script:
- - env
-
- build_script:
- - ./tools/ci/jobs/any_compiler.sh --with-sdl2 --with-libintl-prefix=${LOCALBASE}
-
- always:
- config_artifacts:
- path: "config.log"
-
- always:
- all_artifacts:
- path: "*"
-
- always:
- logs_artifacts:
- path: "logs/*"
-
- run_script:
- - ./tools/ci/scripts/runtests.sh
-
- build_tests_script:
- - make clean
- - ./tools/ci/jobs/any_compiler_tests.sh --without-dyecmd --without-manaplusgame --with-libintl-prefix=${LOCALBASE} --with-sdl2
-
- always:
- config_tests_artifacts:
- path: "config.log"
-
- always:
- all_tests_artifacts:
- path: "*"
-
- always:
- logs_tests_artifacts:
- path: "logs/*"