diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ff4df17e85..caab2d1584 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -874,7 +874,6 @@ jobs: -e DATABASE_URL='postgresql://root@%2Fvar%2Frun%2Fpostgresql/root' \ -e SCCACHE_DIR=/sccache \ -e RUSTC_WRAPPER=sccache \ - -e CARGO_PROFILE_RELEASE_DEBUG=true \ -e CI_COMMIT_SHORT_SHA="${CI_COMMIT_SHORT_SHA}" \ -e VERSION="${VERSION}" \ -e CONTAINER_REPO_ROOT=/carbide \ diff --git a/Cargo.toml b/Cargo.toml index 371be4f86f..d993a8edeb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -262,6 +262,10 @@ zeroize = { version = "1", features = ["derive"] } zip = { version = "8.6", default-features = false } jsonpath-rust = "1.0.4" +[profile.ci-tests] +inherits = "dev" +debug = "line-tables-only" + [profile.release] debug = "line-tables-only" debug-assertions = true # Add some extra assurance during development diff --git a/Makefile.toml b/Makefile.toml index e92f4fcab9..f6883945bd 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -711,8 +711,10 @@ dependencies = [ [tasks.test-release-container-services] workspace = false -dependencies = [ - "test-flow", +command = "cargo" +args = [ + "test", + "--profile=ci-tests", ] [tasks.build-and-test-release-container-services]