aboutsummaryrefslogtreecommitdiff
path: root/default.nix
Commit message (Collapse)AuthorAgeFilesLines
* nix, ci: build with CraneAlex Auvolat6 days1-37/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This removes our dependency on cargo2nix, which was causing us some issues. Whereas cargo2nix creates one Nix derivation per crate, Crane uses only two derivations: 1. Build dependencies only 2. Build the final binary This means that during the second step, no caching can be done. For instance, if we do a change in garage_model, we need to recompile all of the Garage crates including those that do not depend on garage_model. On the upside, this allows all of the Garage crates to be built at once using cargo build logic, which is optimized for high parallelism and better pipelining between all of the steps of the build. All in all, this makes most builds faster than cargo2nix. A few other changes have been made to the build scripts and CI: - Unit tests are now run within a Nix derivation. In fact, we have different derivations to run the tests using LMDB and Sqlite as metadata db engines. - For debug builds, most CI steps now run in parallel (with the notable exception of the smoke test that runs after the build, which is inevitable). - We no longer pass the GIT_VERSION argument when building debug builds and running the tests. This means that dev binaries and test binaries don't know the exact version of Garage they are from. That shouldn't be an issue in most cases. - The not-dynamic.sh scripts has been fixed to fail if the file does not exist.
* nix build: remove clippy build env that doesn't workAlex Auvolat2025-01-121-7/+0
|
* [rm-sled] Remove the Sled database engineAlex Auvolat2024-03-081-1/+0
|
* Apply nixfmt to all .nix files; fix devshell and add it to cacheAlex Auvolat2023-01-261-17/+11
|
* Make repository into a Nix flakeAlex Auvolat2022-11-161-4/+4
|
* Cleanup nix scriptsAlex Auvolat2022-10-181-4/+3
|
* Fix i386 build with custom toolchain (armv6 unknown state)Alex Auvolat2022-10-141-1/+4
|
* cargo2nix unstable (patched), rust 1.63.0, nixpkgs 22.05 (32-bit builds are ↵Alex Auvolat2022-10-141-5/+32
| | | | broken)
* Configure structopt to report the right versionv0.7.2_ci-test-2bug/reported-versionQuentin Dufour2022-08-111-4/+4
| | | | | | | | | | By default, structopt reports the value provided by the env var CARGO_PKG_VERSION, feeded by Cargo when reading Cargo.toml. However for Garage we use a versioning based on git, so we often report a version that is behind the real version. In this commit, we create garage_util::version::garage() that reports the right version and configure all structopt subcommands to call this function instead of using the env var.
* Run clippy in nix, leveraging nix caching abilityQuentin Dufour2022-07-261-8/+9
|
* Refactor default.nix to follow Nix Flakes patternsQuentin Dufour2022-07-261-139/+22
|
* Fix: compile aarch64+armv6 as static binariesQuentin Dufour2022-07-261-27/+29
|
* Fix garage_version() now that GIT_VERSION is read in crate garage_rpcv0.7.2.1Alex Auvolat2022-06-021-1/+1
|
* Compile kuberetes-discovery only when release=truev0.7.0-rc1Quentin Dufour2022-03-241-0/+22
|
* Force static builds for all platformsci/staticQuentin Dufour2022-02-241-28/+58
|
* Add integration tests to DroneQuentin Dufour2022-02-101-19/+28
|
* tests: Fix garage integration testJill2022-02-101-1/+1
|
* Support STREAMING-AWS4-HMAC-SHA256-PAYLOAD (#64) (#156)Jill2022-01-171-1/+1
| | | | | | | | Closes #64. Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/156 Co-authored-by: Jill <kokakiwi@deuxfleurs.fr> Co-committed-by: Jill <kokakiwi@deuxfleurs.fr>
* Implement ListMultipartUploads (#171)Quentin2022-01-121-0/+20
| | | | | | | | | | | | | | | | | | | | | | | Implement ListMultipartUploads, also refactor ListObjects and ListObjectsV2. It took me some times as I wanted to propose the following things: - Using an iterator instead of the loop+goto pattern. I find it easier to read and it should enable some optimizations. For example, when consuming keys of a common prefix, we do many [redundant checks](https://git.deuxfleurs.fr/Deuxfleurs/garage/src/branch/main/src/api/s3_list.rs#L125-L156) while the only thing to do is to [check if the following key is still part of the common prefix](https://git.deuxfleurs.fr/Deuxfleurs/garage/src/branch/feature/s3-multipart-compat/src/api/s3_list.rs#L476). - Try to name things (see ExtractionResult and RangeBegin enums) and to separate concerns (see ListQuery and Accumulator) - An IO closure to make unit tests possibles. - Unit tests, to track regressions and document how to interact with the code - Integration tests with `s3api`. In the future, I would like to move them in Rust with the aws rust SDK. Merging of the logic of ListMultipartUploads and ListObjects was not a goal but a consequence of the previous modifications. Some points that we might want to discuss: - ListObjectsV1, when using pagination and delimiters, has a weird behavior (it lists multiple times the same prefix) with `aws s3api` due to the fact that it can not use our optimization to skip the whole prefix. It is independant from my refactor and can be tested with the commented `s3api` tests in `test-smoke.sh`. It probably has the same weird behavior on the official AWS S3 implementation. - Considering ListMultipartUploads, I had to "abuse" upload id marker to support prefix skipping. I send an `upload-id-marker` with the hardcoded value `include` to emulate your "including" token. - Some ways to test ListMultipartUploads with existing software (my tests are limited to s3api for now). Co-authored-by: Quentin Dufour <quentin@deuxfleurs.fr> Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/171 Co-authored-by: Quentin <quentin@dufour.io> Co-committed-by: Quentin <quentin@dufour.io>
* Hopefully fix Nix buildAlex Auvolat2022-01-041-1/+1
|
* Use Rust binaries from Nix instead of rustupQuentin Dufour2021-10-291-11/+2
|
* Improve CLI, adapt tests, update documentationAlex Auvolat2021-10-251-1/+1
|
* Build Garage with Nixfeature/staticQuentin Dufour2021-10-191-0/+75