From f8068f157612b4ceaf8b0d7cf9917f37c7f92849 Mon Sep 17 00:00:00 2001 From: Jon Leech Date: Mon, 8 Jul 2024 23:07:33 -0700 Subject: [PATCH] Another try for a minimal case showing the CI problem --- .github/workflows/presubmit.yml | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/.github/workflows/presubmit.yml b/.github/workflows/presubmit.yml index 32a1bc21..6282651c 100644 --- a/.github/workflows/presubmit.yml +++ b/.github/workflows/presubmit.yml @@ -41,7 +41,12 @@ jobs: - name: List git tag run: | + echo Git tag: git describe --tags --dirty + echo Git branch: + git symbolic-ref --short HEAD + echo Git commit: + git log -1 --format="%H" - name: Validate XML run: | @@ -49,12 +54,12 @@ jobs: - name: Generate core specs (HTML and PDF) run: | - python3 makeSpec -clean -spec core OUTDIR=out.core -j 5 -O api c env ext cxx4opencl + python3 makeSpec -clean -spec core OUTDIR=out.core QUIET= -j -O api c env ext cxx4opencl - - name: Generate core + extension specs (HTML) - run: | - python3 makeSpec -clean -spec khr OUTDIR=out.khr -j -O html - - - name: Generate reference pages - run: | - python3 makeSpec -spec khr OUTDIR=out.refpages -j -O manhtmlpages +# - name: Generate core + extension specs (HTML) +# run: | +# python3 makeSpec -clean -spec khr OUTDIR=out.khr -j -O html +# +# - name: Generate reference pages +# run: | +# python3 makeSpec -spec khr OUTDIR=out.refpages -j -O manhtmlpages