Skip to content

Commit

Permalink
[ci] Debug odd left-over files
Browse files Browse the repository at this point in the history
  • Loading branch information
ojwb committed Feb 10, 2024
1 parent a80b3fc commit 3090dee
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,14 @@ jobs:
uses: actions/checkout@v4
with:
show-progress: false
- name: Post-checkout
run: git status --porcelain
- name: Install CCache
uses: hendrikmuhs/ccache-action@v1
with:
key: macos
- name: Post-ccache
run: git status --porcelain
- name: Install package dependencies
run: |
brew update
Expand All @@ -40,19 +44,29 @@ jobs:
brew link --force gettext
cpan -T -i local::lib < /dev/null
cpan -I -T -i Locale::PO < /dev/null
- name: Post-install
run: git status --porcelain
- name: bootstrap source tree
run: |
autoreconf -fiv
git checkout INSTALL
V=`sed -e 's/^AC_INIT[^,]*, *\[\([^]]*\)\].*/\1/p;d' configure.ac` ; curl https://survex.com/software/$V/survex-$V.tar.gz | gtar --strip-components=1 --skip-old-files -zxf - ; ls -lrt lib ; touch lib/unifont.pixelfont lib/preload_font.h; echo ; ls -lrt doc; touch doc/*.1 doc/manual.txt doc/manual.pdf doc/manual/stampfile
- name: Post-bootstrap
run: git status --porcelain
- name: configure
run: ./configure CC='ccache gcc' CXX='ccache g++'
- name: Post-configure
run: git status --porcelain
- name: make
run: |
eval "$(perl -I$HOME/perl5/lib/perl5 -Mlocal::lib)"
make -j3
- name: Post-make
run: git status --porcelain
- name: Run tests
run: make check VERBOSE=1
- name: Post-tests
run: git status --porcelain
- name: Check generated files are in .gitignore
# grep '^' passes through all input while giving a non-zero exit status
# if that input is empty.
Expand Down

0 comments on commit 3090dee

Please sign in to comment.