Skip to content

Commit

Permalink
Clean up builds
Browse files Browse the repository at this point in the history
  • Loading branch information
owenthereal committed May 31, 2023
1 parent 488dc8a commit 2d367c1
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 54 deletions.
40 changes: 14 additions & 26 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,9 @@ jobs:
cflags: '-Wnonnull'
steps:
- name: Clone repository
uses: actions/checkout@v1
- name: Open Submodule(s)
run: |
git submodule update --init --recursive
uses: actions/checkout@v3
with:
submodules: true
- name: Install packages
run: |
sudo apt-get update -qq
Expand Down Expand Up @@ -67,28 +66,17 @@ jobs:
run: |
ulimit -c unlimited
make -j4 check
- name: Core dump stacks
run: |
echo "thread apply all bt" > /tmp/x
find . -name core -print | while read core; do gdb -batch -x x `file "$core"|sed -e "s/^[^']*'//" -e "s/[ '].*$//"` "$core"; done
if [ "$(find . -name core -print | wc -l)" -gt 0 ]; then false; fi
- name: Test logs
- name: Upload Test Logs
if: ${{ failure() }}
run: |
cat test-suite.log
cat tests/*.log
- name: Upload Install Tarball
uses: actions/upload-artifact@v2
with:
name: Install Tarball
path: '~/jq-install-linux-${{ matrix.compiler }}.tgz'
- name: Upload Dist Tarball
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: Dist Tarball
path: 'jq-*.tar.gz'
- name: Upload Logs Tarball
uses: actions/upload-artifact@v2
name: test-logs
path: |
test-suite.log
tests/*.log
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: Test Logs
path: '~/logs-linux-${{ matrix.compiler }}.tgz'
name: jq-${{ matrix.name }}
path: |
jq
31 changes: 14 additions & 17 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,11 @@ jobs:
compiler: clang
steps:
- name: Clone repository
uses: actions/checkout@v1
- name: Open Submodule(s)
run: |
git submodule update --init --recursive
uses: actions/checkout@v3
with:
submodules: true
- name: Install packages
run: |
uname -s
brew update
brew install autoconf automake libtool flex bison python3
sed -i.bak '/^AM_INIT_AUTOMAKE(\[-Wno-portability 1\.14\])$/s/14/11/' modules/oniguruma/configure.ac
Expand All @@ -60,18 +58,17 @@ jobs:
run: |
ulimit -c unlimited
make -j4 check
- name: Test logs
- name: Upload Test Logs
if: ${{ failure() }}
run: |
cat test-suite.log
cat tests/*.log
- name: Upload Install Tarball
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: Install Tarball
path: '~/jq-install-osx-${{ matrix.compiler }}.tgz'
- name: Upload Logs Tarball
uses: actions/upload-artifact@v2
name: test-logs
path: |
test-suite.log
tests/*.log
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: Test Logs
path: '~/logs-osx-${{ matrix.compiler }}.tgz'
name: jq-${{ matrix.name }}
path: |
jq
23 changes: 12 additions & 11 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,18 @@ jobs:
autoreconf -fiv
./configure --disable-valgrind --with-oniguruma=builtin --disable-shared --enable-static --enable-all-static
make -j4
make SUBDIRS="TESTS=tests/mantest tests/jqtest tests/onigtest tests/base64test" check
7z a jq-windows.zip jq.exe
- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: jq artifacts
path: |
jq-windows.zip
make SUBDIRS="TESTS= tests/mantest tests/jqtest tests/onigtest tests/base64test" check
- name: Upload Test Logs
if: ${{ failure() }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: Test logs
path: test-suite.log
name: test-logs
path: |
test-suite.log
tests/*.log
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: jq-windows
path: |
jq.exe

0 comments on commit 2d367c1

Please sign in to comment.