Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,8 @@ runs:
echo "RUST_BACKTRACE=full" >> "$GITHUB_ENV"
# Set nice CI colors
echo "CARGO_TERM_COLOR=always" >> "$GITHUB_ENV"
# Incremental compilation has no benefit because in our CI we always start from a clean state.
echo "CARGO_INCREMENTAL=0" >> "$GITHUB_ENV"
fi
- name: Enable rust matcher
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ permissions:
contents: read

env:
CARGO_INCREMENTAL: "0" # Disable incremental compilation for coverage
CI: true

jobs:
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/k8s_e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ jobs:
# Run this job even if `changes` job is skipped
if: ${{ !failure() && !cancelled() && github.event_name != 'pull_request' && needs.changes.outputs.website_only != 'true' && needs.changes.outputs.k8s != 'false' }}
env:
CARGO_INCREMENTAL: 0
DISABLE_MOLD: true
Comment thread
thomasqueirozb marked this conversation as resolved.
steps:
- name: Checkout branch
Expand Down Expand Up @@ -207,7 +206,6 @@ jobs:
env:
USE_MINIKUBE_CACHE: "true"
SKIP_PACKAGE_DEB: "true"
CARGO_INCREMENTAL: 0
HELM_CHART_REPO: ${{ github.workspace }}/helm-charts/charts/vector
with:
timeout_minutes: 45
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/test-make-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ jobs:
id-token: write
timeout-minutes: 90
env:
CARGO_INCREMENTAL: 0
DD_ENV: "ci"
steps:
- name: Checkout branch
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ permissions:
contents: read

env:
CARGO_INCREMENTAL: "0"
CI: true
DD_ENV: "ci"

Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/unit_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ jobs:
unit-mac:
runs-on: macos-14-xlarge
timeout-minutes: 90
env:
CARGO_INCREMENTAL: 0
steps:
- name: Checkout branch
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand Down
Loading