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
1 change: 0 additions & 1 deletion .github/workflows/ci_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ name: CI (Pull Request)

on:
pull_request:
branches: ['main']
push:
branches: ['main']

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci_run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,14 +173,14 @@ jobs:
if: steps.cache-docker-images.outputs.cache-hit == 'true'
run: |
./foc-devnet clean --all
./foc-devnet init --no-docker-build
./foc-devnet init --no-docker-build ${{ inputs.init_flags }}

# If Docker images are not cached, do full init (downloads YugabyteDB and builds all images)
- name: "EXEC: {Initialize without cache}, independent"
if: steps.cache-docker-images.outputs.cache-hit != 'true'
run: |
./foc-devnet clean --all
./foc-devnet init
./foc-devnet init ${{ inputs.init_flags }}

# CACHE-DOCKER: Save Docker images as tarballs for caching
- name: "EXEC: {Save Docker images for cache}, DEP: {C-docker-images-cache}"
Expand Down
3 changes: 2 additions & 1 deletion scenarios/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
ORDER = [
("test_containers", 5),
("test_basic_balances", 10),
("test_storage_e2e", 100),
("test_storage_e2e", 200),
("test_multi_copy_upload", 600),
("test_caching_subsystem", 200),
]

Expand Down
Loading
Loading