Skip to content

Commit

Permalink
Merge automake w/o long long job
Browse files Browse the repository at this point in the history
  • Loading branch information
thetic committed Nov 19, 2022
1 parent 3cb58d7 commit e0bd32c
Showing 1 changed file with 6 additions and 13 deletions.
19 changes: 6 additions & 13 deletions .github/workflows/builds.yml
Expand Up @@ -59,6 +59,11 @@ jobs:
os: ubuntu-latest
cc: clang
cxx: clang++
- name: No long long
os: ubuntu-latest
cc: gcc
cxx: g++
configure_options: "--disable-longlong"
runs-on: ${{ matrix.os }}
name: Autotools ${{ matrix.name }}
steps:
Expand All @@ -73,7 +78,7 @@ jobs:
- name: Configure
run: |
autoreconf -i .
./configure
./configure ${{ matrix.configure_options }}
- name: Build and test
run: make tdd

Expand Down Expand Up @@ -323,15 +328,3 @@ jobs:
env:
TERM: linux
run: $CPPUTEST_HOME/platforms/Dos/alltests.sh

automake-no-long-long:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@main
- name: Configure
run: |
autoreconf -i .
./configure --disable-longlong
- name: Build and test
run: make tdd

0 comments on commit e0bd32c

Please sign in to comment.