Skip to content
Merged
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
12 changes: 6 additions & 6 deletions .github/workflows/performance-profiling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,6 @@ jobs:
chmod +x scripts/profile-cli.sh
./scripts/profile-cli.sh -o $TARGET_RESULTS_FILE -v -t $COMMAND_TIMEOUT -s $SLOW_THRESHOLD

# Delete local files so we start with a fresh DB. This might otherwise fail the profiling
# of the current branch if the target branch contains DB migrations that are not yet applied.
- name: Cleanup
run: |
zenml clean -y

# Profile current branch with isolated environment
- name: Checkout current branch
run: |
Expand All @@ -91,6 +85,12 @@ jobs:
./scripts/install-zenml-dev.sh --system
# Verify installation
zenml --version

# Delete local files so we start with a fresh DB. This might otherwise fail the profiling
# of the current branch if the target branch contains DB migrations that are not yet applied.
- name: Cleanup
run: |
zenml clean -y
- name: Profile current branch
id: profile-current
run: |
Expand Down
Loading