Skip to content

Commit

Permalink
style: Rename files
Browse files Browse the repository at this point in the history
  • Loading branch information
PROFeNoM committed Jan 30, 2025
1 parent c9b9e44 commit 43a1fd9
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 8 deletions.
7 changes: 3 additions & 4 deletions .circleci/continue_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1794,15 +1794,14 @@ jobs:
name: Install required packages
command: sudo apt-get update && sudo apt-get install -y jq
- run:
name: Aggregate Tested Versions
name: Download & Aggregate Tested Versions
command: |
export CI_COMMIT_SHA=${CIRCLE_SHA1}
export CI_COMMIT_BRANCH=${CIRCLE_BRANCH}
./tooling/tested_versions/aggregate_tested_versions.sh
./tooling/tested_versions/download_and_aggregate_tested_versions.sh
- run:
name: Generate Markdown Table
command: |
php ./tooling/tested_versions/generate_markdown.php
command: php ./tooling/tested_versions/generate_markdown_table.php
- run:
name: Create or Update PR Branch
command: ./tooling/tested_versions/create_or_update_supported_versions_pr.sh
Expand Down
2 changes: 1 addition & 1 deletion .gitlab/download-circleci_artifact.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ download_circleci_artifact() {
JOB_NAME=$3 # "Compile Loader Linux x86_64"
ARTIFACT_PATTERN=$4 # "loader/modules/dd_library_loader.so"
ARTIFACT_NAME=$5 # "dd_library_loader-x86_64-linux-gnu.so"
REQUIRE_SUCCESS=${6:-true} # Whether job status must be successful (default: 1)
REQUIRE_SUCCESS=${6:-true} # Whether job status must be successful (default: true)

# Circle CI workflow is not triggered by tags,
# So we fallback to the release branch (eg. "ddtrace-1.3.0")
Expand Down
2 changes: 1 addition & 1 deletion tooling/tested_versions/composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"scripts": {
"generate": [
"php aggregate-tested-versions.php"
"php generate_tested_versions_artifact.php"
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,9 @@
}
}

// mkdir $TESTED_VERSIONS_DIR
if (!file_exists($TESTED_VERSIONS_DIR)) {
mkdir($TESTED_VERSIONS_DIR, 0777, true);
}

file_put_contents($OUTPUT_FILE_PATH, json_encode($aggregatedData, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES));
echo "Aggregated data written to: $OUTPUT_FILE_PATH\n";
echo "Generated tested versions file: $OUTPUT_FILE_PATH\n";

0 comments on commit 43a1fd9

Please sign in to comment.