Skip to content

Commit b694ccf

Browse files
committed
misc: cleanup test artifacts
1 parent d732dc1 commit b694ccf

File tree

3 files changed

+1
-32
lines changed

3 files changed

+1
-32
lines changed

.github/workflows/engine-checks-nightly.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,6 @@ jobs:
4949
- run: ./run backend ci-check
5050
env:
5151
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
52-
- name: Upload Edition File
53-
uses: actions/upload-artifact@v4
54-
with:
55-
name: Edition File
56-
path: distribution/editions/*.yaml
57-
- name: Upload fbs-schema
58-
uses: actions/upload-artifact@v4
59-
with:
60-
name: fbs-schema
61-
path: engine/language-server/src/main/schema/
6252
- if: "(always()) && (contains(github.event.pull_request.labels.*.name, 'CI: Clean build required') || inputs.clean_build_required)"
6353
name: Clean after
6454
run: ./run git-clean

.github/workflows/engine-checks.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -51,16 +51,6 @@ jobs:
5151
- run: ./run backend ci-check
5252
env:
5353
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
54-
- name: Upload Edition File
55-
uses: actions/upload-artifact@v4
56-
with:
57-
name: Edition File
58-
path: distribution/editions/*.yaml
59-
- name: Upload fbs-schema
60-
uses: actions/upload-artifact@v4
61-
with:
62-
name: fbs-schema
63-
path: engine/language-server/src/main/schema/
6454
- if: "(always()) && (contains(github.event.pull_request.labels.*.name, 'CI: Clean build required') || inputs.clean_build_required)"
6555
name: Clean after
6656
run: ./run git-clean

build_tools/build/src/ci_gen/job.rs

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -757,18 +757,7 @@ pub struct CiCheckBackend {
757757
impl JobArchetype for CiCheckBackend {
758758
fn job(&self, target: Target) -> Job {
759759
let job_name = format!("Engine ({})", self.graal_edition);
760-
let mut job_builder = RunStepsBuilder::new("backend ci-check");
761-
if target.0 == OS::Linux && self.graal_edition == graalvm::Edition::Community {
762-
let upload_edition_file = step::upload_artifact("Upload Edition File")
763-
.with_custom_argument("name", paths::EDITION_FILE_ARTIFACT_NAME)
764-
.with_custom_argument("path", "distribution/editions/*.yaml");
765-
let upload_fbs_schema = step::upload_artifact("Upload fbs-schema")
766-
.with_custom_argument("name", "fbs-schema")
767-
.with_custom_argument("path", "engine/language-server/src/main/schema/");
768-
job_builder = job_builder
769-
.customize(move |step| vec![step, upload_edition_file, upload_fbs_schema]);
770-
}
771-
let mut job = job_builder.build_job(job_name, target);
760+
let mut job = RunStepsBuilder::new("backend ci-check").build_job(job_name, target);
772761
match self.graal_edition {
773762
graalvm::Edition::Community =>
774763
job.env(engine_env::GRAAL_EDITION, graalvm::Edition::Community),

0 commit comments

Comments
 (0)