From 97967402b360112237e8d6de741697d6c601e034 Mon Sep 17 00:00:00 2001 From: Jose Luis Rivero Date: Wed, 13 Dec 2023 17:59:45 +0100 Subject: [PATCH 1/2] Back to add missing steps in XML diff and checks Signed-off-by: Jose Luis Rivero --- .github/workflows/ci.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f028e42b5..de37d7f96 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -33,6 +33,16 @@ jobs: WRITE_JOB_LOG=1 java -jar tools/jobdsl.jar *.dsl find logs/* -exec sort {} -o {} \; popd + - name: Checks for DSL Code + run: | + cd jenkins-scripts/dsl + ./dsl_checks.bash + - name: Export XML generated configuration for diff + run: | + cd jenkins-scripts/dsl + # export files for later diff + mkdir /tmp/pr_xml_configuration + mv *.xml /tmp/pr_xml_configuration/ - name: Update and commit logs generated uses: stefanzweifel/git-auto-commit-action@8756aa072ef5b4a080af5dc8fef36c5d586e521d # v5 sha with: From 1f4174edd5993c06c689e1726375176238ee47c0 Mon Sep 17 00:00:00 2001 From: Jose Luis Rivero Date: Wed, 13 Dec 2023 18:02:03 +0100 Subject: [PATCH 2/2] Rename the file Signed-off-by: Jose Luis Rivero --- .github/workflows/{ci.yaml => ci-dsl.yaml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{ci.yaml => ci-dsl.yaml} (100%) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci-dsl.yaml similarity index 100% rename from .github/workflows/ci.yaml rename to .github/workflows/ci-dsl.yaml