Skip to content

Commit

Permalink
Move 'git describe to the last step as it's failing for unknown reasons
Browse files Browse the repository at this point in the history
  • Loading branch information
oddhack committed Jul 1, 2024
1 parent 53503ff commit c1b4b6f
Showing 1 changed file with 20 additions and 16 deletions.
36 changes: 20 additions & 16 deletions .github/workflows/presubmit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,19 @@ on:
# When a pull request is opened from a local branch or fork
pull_request:

# - name: Install required packages
# run: |
# sudo apt-get install -y libpango1.0-dev libwebp-dev ghostscript fonts-lyx jing libavalon-framework-java libbatik-java python3-pyparsing
# sudo gem install asciidoctor -v 2.0.16
# sudo gem install coderay -v 1.1.1
# sudo gem install rouge -v 3.19.0
# sudo gem install ttfunk -v 1.7.0
# sudo gem install hexapdf -v 0.27.0
# sudo gem install asciidoctor-pdf -v 2.3.4
# sudo gem install asciidoctor-mathematical -v 0.3.5
# sudo pip install pyparsing


jobs:
build:
name: Build all specs
Expand All @@ -27,22 +40,6 @@ jobs:
fetch-depth: 0
submodules: recursive

# - name: Install required packages
# run: |
# sudo apt-get install -y libpango1.0-dev libwebp-dev ghostscript fonts-lyx jing libavalon-framework-java libbatik-java python3-pyparsing
# sudo gem install asciidoctor -v 2.0.16
# sudo gem install coderay -v 1.1.1
# sudo gem install rouge -v 3.19.0
# sudo gem install ttfunk -v 1.7.0
# sudo gem install hexapdf -v 0.27.0
# sudo gem install asciidoctor-pdf -v 2.3.4
# sudo gem install asciidoctor-mathematical -v 0.3.5
# sudo pip install pyparsing

- name: List git tag
run: |
git describe --tags --dirty
- name: Generate core specs (HTML and PDF)
run: |
python3 makeSpec -clean -spec core OUTDIR=out.core -j 5 api c env ext cxx4opencl
Expand All @@ -58,3 +55,10 @@ jobs:
- name: Validate XML
run: |
make -C xml validate
- name: List git tag
run: |
/bin/pwd
ls -ls
git describe --tags --dirty

0 comments on commit c1b4b6f

Please sign in to comment.