Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

fix: include missing variable on index-s3 #99

Merged
merged 1 commit into from
Feb 28, 2024
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: 1 addition & 1 deletion .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches:
- main
- bucket-tester-app-image
- fix-create-duplicate-bucket-test
env:
REGISTRY: ghcr.io
DOCKER_USERNAME: fczuardi
Expand Down
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ done
chmod -R 755 results

# Schedule for TEST_SUITE=big
echo "8 7,9,11,14,16,18,22,0 * * * TEST_SUITE=big /app/run_tests.sh" >> /etc/crontabs/root
echo "03 7,9,11,14,17,18,19,22,0 * * * TEST_SUITE=big /app/run_tests.sh" >> /etc/crontabs/root

# Schedule for TEST_SUITE=small
echo "*/5 * * * * TEST_SUITE=small /app/run_tests.sh" >> /etc/crontabs/root
Expand Down
1 change: 1 addition & 0 deletions src/k6/index-s3.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ import {
// init stage
// XXX: due to k6 this is the aggregated copy/paste of each init stage
// of the individual tests
const profile = __ENV.AWS_CLI_PROFILE
const config = yamlParse(open('../../config.yaml'));
const s3Config = config.remotes[__ENV.AWS_CLI_PROFILE].s3
const swiftConfig = config.remotes[__ENV.AWS_CLI_PROFILE].swift
Expand Down
Loading