summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2019-10-28 11:38:30 +0100
committerMurray Cumming <murrayc@murrayc.com>2019-10-29 11:16:23 +0100
commitd80622227a1316f0d29517eb7f8a6b93f9b41442 (patch)
tree88408b6c2e7ec184d924a8335c8b71ac0a4cd75a
parent17498119027f9b80788298937fc41df689e93974 (diff)
downloadsigc++-d80622227a1316f0d29517eb7f8a6b93f9b41442.tar.gz
GitHub Actions CI: Remove extra configure calls
./autogen.sh already runs configure, passing the arguments. This is why the builds didn't fail when there were compiler errors.
-rw-r--r--.github/workflows/autotools-clang-5.yml1
-rw-r--r--.github/workflows/autotools-clang-6.yml1
-rw-r--r--.github/workflows/autotools-clang-7.yml1
-rw-r--r--.github/workflows/autotools-clang-8.yml1
-rw-r--r--.github/workflows/autotools-clang-9.yml1
-rw-r--r--.github/workflows/autotools-gcc-7.yml1
-rw-r--r--.github/workflows/autotools-gcc-8.yml1
-rw-r--r--.github/workflows/autotools-gcc-9.yml1
8 files changed, 0 insertions, 8 deletions
diff --git a/.github/workflows/autotools-clang-5.yml b/.github/workflows/autotools-clang-5.yml
index 84b3a46..7c30094 100644
--- a/.github/workflows/autotools-clang-5.yml
+++ b/.github/workflows/autotools-clang-5.yml
@@ -15,7 +15,6 @@ jobs:
sudo apt install mm-common clang-5.0
export CXX=clang++-5.0
./autogen.sh --enable-warnings=fatal
- ./configure
make
- name: Test
run: make check
diff --git a/.github/workflows/autotools-clang-6.yml b/.github/workflows/autotools-clang-6.yml
index 61697ae..ad5faa2 100644
--- a/.github/workflows/autotools-clang-6.yml
+++ b/.github/workflows/autotools-clang-6.yml
@@ -15,7 +15,6 @@ jobs:
sudo apt install mm-common clang-6.0
export CXX=clang++-6.0
./autogen.sh --enable-warnings=fatal
- ./configure
make
- name: Test
run: make check
diff --git a/.github/workflows/autotools-clang-7.yml b/.github/workflows/autotools-clang-7.yml
index bd5da67..62fb16f 100644
--- a/.github/workflows/autotools-clang-7.yml
+++ b/.github/workflows/autotools-clang-7.yml
@@ -15,7 +15,6 @@ jobs:
sudo apt install mm-common clang-7
export CXX=clang++-7
./autogen.sh --enable-warnings=fatal
- ./configure
make
- name: Test
run: make check
diff --git a/.github/workflows/autotools-clang-8.yml b/.github/workflows/autotools-clang-8.yml
index 2344588..3048775 100644
--- a/.github/workflows/autotools-clang-8.yml
+++ b/.github/workflows/autotools-clang-8.yml
@@ -15,7 +15,6 @@ jobs:
sudo apt install mm-common clang-8
export CXX=clang++-8
./autogen.sh --enable-warnings=fatal
- ./configure
make
- name: Test
run: make check
diff --git a/.github/workflows/autotools-clang-9.yml b/.github/workflows/autotools-clang-9.yml
index cde6e74..deb9162 100644
--- a/.github/workflows/autotools-clang-9.yml
+++ b/.github/workflows/autotools-clang-9.yml
@@ -16,7 +16,6 @@ jobs:
apt install mm-common clang-9 --yes
export CXX=clang++-9
./autogen.sh --enable-warnings=fatal
- ./configure
make
- name: Test
run: make check
diff --git a/.github/workflows/autotools-gcc-7.yml b/.github/workflows/autotools-gcc-7.yml
index 7996cdf..826efa7 100644
--- a/.github/workflows/autotools-gcc-7.yml
+++ b/.github/workflows/autotools-gcc-7.yml
@@ -15,7 +15,6 @@ jobs:
sudo apt install mm-common g++-7
export CXX=g++-7
./autogen.sh --enable-warnings=fatal
- ./configure
make
- name: Test
run: make check
diff --git a/.github/workflows/autotools-gcc-8.yml b/.github/workflows/autotools-gcc-8.yml
index 9b7279d..e9aa877 100644
--- a/.github/workflows/autotools-gcc-8.yml
+++ b/.github/workflows/autotools-gcc-8.yml
@@ -15,7 +15,6 @@ jobs:
sudo apt install mm-common g++-8
export CXX=g++-8
./autogen.sh --enable-warnings=fatal
- ./configure
make
- name: Test
run: make check
diff --git a/.github/workflows/autotools-gcc-9.yml b/.github/workflows/autotools-gcc-9.yml
index cdfb3ea..f8eb697 100644
--- a/.github/workflows/autotools-gcc-9.yml
+++ b/.github/workflows/autotools-gcc-9.yml
@@ -16,7 +16,6 @@ jobs:
sudo apt install mm-common g++-9
export CXX=g++-9
./autogen.sh --enable-warnings=fatal
- ./configure
make
- name: Test
run: make check