| Commit message (Collapse) | Author | Files | Lines | ||
|---|---|---|---|---|---|
| 2022-09-17 | fix build for latest zig | 1 | -4/+4 | ||
| 2022-08-29 | Remove unnecessary linkLibC() when static linking | 1 | -2/+1 | ||
| 2022-08-21 | build: force the use of stage1 | 1 | -0/+3 | ||
| 2022-07-26 | fix build | 1 | -1/+1 | ||
| 2022-07-23 | build: let the user specify the build mode | 1 | -8/+8 | ||
| 2022-04-01 | build: only include the 'c' directory if we're using the bundled sqlite code | 1 | -2/+2 | ||
| 2022-01-04 | build: add a macOS cross-compilation test target | 1 | -0/+15 | ||
| The tests _may_ run with darling with `zig build -fdarling test`, but I haven't tested that yet. | |||||
| 2022-01-04 | build: add a windows cross-compilation test target | 1 | -0/+16 | ||
| The tests will run in wine with `zig build -fwine test` | |||||
| 2022-01-04 | build: add some comments to clarify what we're doing | 1 | -0/+8 | ||
| 2021-12-26 | add some fuzzing capability | 1 | -1/+49 | ||
| 2021-12-06 | build: fix for latest zig | 1 | -8/+0 | ||
| 2021-11-02 | add options to enable wine/wasmtime/darling for tests | 1 | -0/+6 | ||
| 2021-10-05 | build: fix for latest zig | 1 | -2/+3 | ||
| 2021-08-27 | fix build script for latest zig | 1 | -2/+5 | ||
| 2021-08-18 | build: handle macos in the test targets | 1 | -0/+8 | ||
| 2021-06-06 | ci: build windows with i386 too | 1 | -0/+8 | ||
| 2021-05-19 | all: update for latest zig | 1 | -2/+1 | ||
| 2021-04-17 | make use_bundled work for all targets | 1 | -4/+5 | ||
| We might want to force the use of the bundled source code even when testing all targets. | |||||
| 2021-04-03 | build: cleanup test target for windows | 1 | -10/+0 | ||
| 2021-03-22 | build: run the tests on all targets we support for a given host OS | 1 | -28/+150 | ||
| For a given host OS (Linux or Windows), define all the test targets directly in the build script. Additionally, support using QEMU to run the non-native tests. | |||||
| 2021-03-13 | build: fix building _without_ the bundled source code | 1 | -6/+11 | ||
| 2021-03-13 | build: fix building with glibc | 1 | -1/+21 | ||
| sqlite3 requires at least glibc 2.28 from my testing; prevent building the tests using anything below that. | |||||
| 2021-03-13 | Move c-sources to c folder | 1 | -3/+3 | ||
| 2021-01-31 | build: add the dbfile option | 1 | -0/+2 | ||
| 2021-01-24 | build: default to in-memory tests | 1 | -2/+2 | ||
| Now that we use `std.testing.tmpDir` we're actually hitting the disk, which made me realize that the tests run significantly slower than before, because on my system `/tmp` is a tmpfs which is already in memory. | |||||
| 2021-01-09 | allow building with the bundled sqlite source code | 1 | -9/+29 | ||
| 2020-12-31 | build: set the target | 1 | -0/+3 | ||
| 2020-12-28 | rename is_ci to in_memory | 1 | -2/+2 | ||
| 2020-10-24 | remove the src directory | 1 | -2/+2 | ||