Skip to content

Commit 65f18c7

Browse files
committed
un-submodule SQLite3MultipleCiphers: 1.8.1
1 parent 1557594 commit 65f18c7

File tree

135 files changed

+619273
-4
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

135 files changed

+619273
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@
66
libsql-server/testrollbackrestore/**
77
libsql-server/testbackuprestore/**
88
libsql-sqlite3/**.o.tmp
9+
/libsql-ffi/bundled/SQLite3MultipleCiphers/build/**

.gitmodules

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +0,0 @@
1-
[submodule "libsql-ffi/bundled/SQLite3MultipleCiphers"]
2-
path = libsql-ffi/bundled/SQLite3MultipleCiphers
3-
url = https://github.com/psarna/SQLite3MultipleCiphers
Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
# Prerequisites
2+
*.d
3+
4+
# Object files
5+
*.o
6+
*.ko
7+
*.obj
8+
*.elf
9+
10+
# Linker output
11+
*.ilk
12+
*.map
13+
*.exp
14+
15+
# Precompiled Headers
16+
*.gch
17+
*.pch
18+
19+
# Libraries
20+
*.lib
21+
*.a
22+
*.la
23+
*.lo
24+
25+
# Shared objects (inc. Windows DLLs)
26+
*.dll
27+
*.so
28+
*.so.*
29+
*.dylib
30+
31+
# Executables
32+
*.exe
33+
*.out
34+
*.app
35+
*.i*86
36+
*.x86_64
37+
*.hex
38+
39+
# Debug files
40+
*.dSYM/
41+
*.su
42+
*.idb
43+
*.pdb
44+
45+
# Kernel Module Compile Results
46+
*.mod*
47+
*.cmd
48+
.tmp_versions/
49+
modules.order
50+
Module.symvers
51+
Mkfile.old
52+
dkms.conf
53+
/x64/
54+
/x86/
55+
/build/.vs/
56+
/build/sqlite3mc_vc17_lib.vcxproj.user
57+
/.vs/
58+
/build/sqlite3mc_vc17_dll.vcxproj.user
59+
/.vscode/
60+
/build/Makefile
61+
/build/CMakeCache.txt
62+
/build/CMakeFiles/
63+
/build/cmake_install.cmake
64+
/build/sqlite3mc_shell
65+
/autom4te.cache
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# This is the control file for Travis continuous integration system.
2+
#
3+
# It is used automatically for the repositories on Github if it's found in the
4+
# root directory of the project.
5+
language: c
6+
7+
# Specify the default platform.
8+
os: linux
9+
dist: xenial
10+
11+
jobs:
12+
include:
13+
# - dist: xenial
14+
# compiler: gcc
15+
# env: WXGTK_PACKAGE=libwxgtk3.0-dev
16+
- dist: xenial
17+
compiler: gcc
18+
env: WXGTK_PACKAGE=libwxgtk3.0-dev
19+
arch: arm64
20+
# Disable OS X builds for now
21+
# - os: osx
22+
# osx_image: xcode11.4
23+
# compiler: clang
24+
25+
branches:
26+
only:
27+
- main
28+
29+
before_install:
30+
- autoreconf
31+
32+
script:
33+
- set -e && echo 'Configuring...' && echo -en 'travis_fold:start:script.configure\\r'
34+
- ./configure
35+
- echo -en 'travis_fold:end:script.configure\\r'
36+
- echo 'Building...' && echo -en 'travis_fold:start:script.build\\r'
37+
- make
38+
- echo -en 'travis_fold:end:script.build\\r'
39+
- echo 'Testing...' && echo -en 'travis_fold:start:script.test\\r'
40+
- ./sqlite3shell test1.db3 ".read test/test1.sql"
41+
- ./sqlite3shell test2.db3 ".read test/test2.sql"
42+
- ./sqlite3shell dummy.db3 ".read test/sqlciphertest.sql"
43+
- echo -en 'travis_fold:end:script.test\\r'
44+
45+
# The "set +e" is a workaround for https://github.com/travis-ci/travis-ci/issues/6522
46+

0 commit comments

Comments
 (0)