Skip to content

Commit

Permalink
un-submodule SQLite3MultipleCiphers: 1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
psarna committed Jan 8, 2024
1 parent a66ba88 commit 6b4b871
Show file tree
Hide file tree
Showing 135 changed files with 619,273 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@
libsql-server/testrollbackrestore/**
libsql-server/testbackuprestore/**
libsql-sqlite3/**.o.tmp
/libsql-ffi/bundled/SQLite3MultipleCiphers/build/**
3 changes: 0 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
[submodule "libsql-ffi/bundled/SQLite3MultipleCiphers"]
path = libsql-ffi/bundled/SQLite3MultipleCiphers
url = https://github.com/psarna/SQLite3MultipleCiphers
1 change: 0 additions & 1 deletion libsql-ffi/bundled/SQLite3MultipleCiphers
Submodule SQLite3MultipleCiphers deleted from 755a61
65 changes: 65 additions & 0 deletions libsql-ffi/bundled/SQLite3MultipleCiphers/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
# Prerequisites
*.d

# Object files
*.o
*.ko
*.obj
*.elf

# Linker output
*.ilk
*.map
*.exp

# Precompiled Headers
*.gch
*.pch

# Libraries
*.lib
*.a
*.la
*.lo

# Shared objects (inc. Windows DLLs)
*.dll
*.so
*.so.*
*.dylib

# Executables
*.exe
*.out
*.app
*.i*86
*.x86_64
*.hex

# Debug files
*.dSYM/
*.su
*.idb
*.pdb

# Kernel Module Compile Results
*.mod*
*.cmd
.tmp_versions/
modules.order
Module.symvers
Mkfile.old
dkms.conf
/x64/
/x86/
/build/.vs/
/build/sqlite3mc_vc17_lib.vcxproj.user
/.vs/
/build/sqlite3mc_vc17_dll.vcxproj.user
/.vscode/
/build/Makefile
/build/CMakeCache.txt
/build/CMakeFiles/
/build/cmake_install.cmake
/build/sqlite3mc_shell
/autom4te.cache
46 changes: 46 additions & 0 deletions libsql-ffi/bundled/SQLite3MultipleCiphers/.travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# This is the control file for Travis continuous integration system.
#
# It is used automatically for the repositories on Github if it's found in the
# root directory of the project.
language: c

# Specify the default platform.
os: linux
dist: xenial

jobs:
include:
# - dist: xenial
# compiler: gcc
# env: WXGTK_PACKAGE=libwxgtk3.0-dev
- dist: xenial
compiler: gcc
env: WXGTK_PACKAGE=libwxgtk3.0-dev
arch: arm64
# Disable OS X builds for now
# - os: osx
# osx_image: xcode11.4
# compiler: clang

branches:
only:
- main

before_install:
- autoreconf

script:
- set -e && echo 'Configuring...' && echo -en 'travis_fold:start:script.configure\\r'
- ./configure
- echo -en 'travis_fold:end:script.configure\\r'
- echo 'Building...' && echo -en 'travis_fold:start:script.build\\r'
- make
- echo -en 'travis_fold:end:script.build\\r'
- echo 'Testing...' && echo -en 'travis_fold:start:script.test\\r'
- ./sqlite3shell test1.db3 ".read test/test1.sql"
- ./sqlite3shell test2.db3 ".read test/test2.sql"
- ./sqlite3shell dummy.db3 ".read test/sqlciphertest.sql"
- echo -en 'travis_fold:end:script.test\\r'

# The "set +e" is a workaround for https://github.com/travis-ci/travis-ci/issues/6522

Loading

0 comments on commit 6b4b871

Please sign in to comment.