From 0b92d3b529f428174ec5fcf7a84e4771074219bb Mon Sep 17 00:00:00 2001 From: Edward Hartnett Date: Mon, 27 Jul 2020 07:58:13 -0600 Subject: [PATCH 1/3] change to trigger CI --- configure.ac | 2 -- 1 file changed, 2 deletions(-) diff --git a/configure.ac b/configure.ac index ba66ce7a2a9..32b893b5692 100644 --- a/configure.ac +++ b/configure.ac @@ -407,5 +407,3 @@ AC_OUTPUT(Makefile # Show the build summary. cat libpio.settings - - From 73d2b8b698a1c16b1b54f5922dec6141b37369c3 Mon Sep 17 00:00:00 2001 From: Edward Hartnett Date: Mon, 27 Jul 2020 08:02:03 -0600 Subject: [PATCH 2/3] removed extra build to avoid confusion --- .github/workflows/master_netcdf.yml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/master_netcdf.yml diff --git a/.github/workflows/master_netcdf.yml b/.github/workflows/master_netcdf.yml deleted file mode 100644 index e3233268f7f..00000000000 --- a/.github/workflows/master_netcdf.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: C/C++ CI - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - name: configure - run: ./configure - - name: make - run: make - - name: make check - run: make check - - name: make distcheck - run: make distcheck From 0c1d3436465359a20d8660a3d625f9b2b28e77fa Mon Sep 17 00:00:00 2001 From: Edward Hartnett Date: Mon, 27 Jul 2020 08:02:56 -0600 Subject: [PATCH 3/3] renamed builds to avoid confusion --- .github/workflows/{c-cpp.yml => autotools.yml} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename .github/workflows/{c-cpp.yml => autotools.yml} (98%) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/autotools.yml similarity index 98% rename from .github/workflows/c-cpp.yml rename to .github/workflows/autotools.yml index 568465f0533..d8027899394 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/autotools.yml @@ -1,4 +1,4 @@ -name: C/C++ CI +name: autotools on: push: