From eaf969847436352f69032c72217809f3c9dafe41 Mon Sep 17 00:00:00 2001
From: Yaroslav Lobankov <y.lobankov@tarantool.org>
Date: Fri, 6 May 2022 12:40:10 +0400
Subject: [PATCH] cleanup: delete old unused files

It looks like we have some files in the source tree that are not used
anymore. So there is no sense to keep them.
Files to be deleted: .appveyor.yml, Jenkinsfile, snapcraft.yaml.

NO_DOC=files removal
NO_TEST=files removal
NO_CHANGELOG=files removal
---
 .appveyor.yml  |  0
 .gitignore     |  1 -
 Jenkinsfile    | 11 -----------
 snapcraft.yaml | 40 ----------------------------------------
 4 files changed, 52 deletions(-)
 delete mode 100644 .appveyor.yml
 delete mode 100644 Jenkinsfile
 delete mode 100644 snapcraft.yaml

diff --git a/.appveyor.yml b/.appveyor.yml
deleted file mode 100644
index e69de29bb2..0000000000
diff --git a/.gitignore b/.gitignore
index 92f8c1b1a9..9341597ec6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -146,7 +146,6 @@ obj-*/
 parts/
 prime/
 stage/
-*.snap
 ftp.log
 sftp.log
 ftpscript.txt
diff --git a/Jenkinsfile b/Jenkinsfile
deleted file mode 100644
index 5754d77729..0000000000
--- a/Jenkinsfile
+++ /dev/null
@@ -1,11 +0,0 @@
-#!groovy
-
-stage('Build'){
-    packpack = new org.tarantool.packpack()
-    node {
-        checkout scm
-        packpack.prepareSources()
-    }
-
-    packpack.packpackBuildMatrix('result')
-}
diff --git a/snapcraft.yaml b/snapcraft.yaml
deleted file mode 100644
index 48b32a890e..0000000000
--- a/snapcraft.yaml
+++ /dev/null
@@ -1,40 +0,0 @@
-name: tarantool
-version: "2.0~git"
-summary: In-memory database and Lua application server
-description: |
- Tarantool is an in-memory database and Lua application server.
-
-  * A drop-in replacement for Lua 5.1, based on LuaJIT 2.1
-  * Lua packages for non-blocking I/O, fibers and HTTP
-  * Indexes: secondary indexes, range queries, index iterators
-  * Transactions: ACID transactions
-  * Replication: asynchronous master-slave and master-master replication
-  * Query language: server-side scripting and stored procedures
-  * Security: authentication and access control
-
-  This snappy contains only tarantool binary.
-confinement: strict
-
-apps:
-  tarantool:
-    command: tarantool
-
-parts:
-    tarantool:
-        source: .
-        plugin: cmake
-        configflags:
-          - -DCMAKE_BUILD_TYPE=RelWithDebInfo
-          - -DENABLE_DIST=OFF # Disable tarantoolctl, init scripts, etc.
-        build-packages:
-          - cmake
-          - make
-          - g++
-          - git
-          - libreadline-dev
-          - libncurses5-dev
-          - libyaml-dev
-          - libiberty-dev # for backtraces
-          - binutils-dev  # for backtraces
-          - zlib1g-dev    # for backtraces
-          - libssl-dev
-- 
GitLab