From: Marc Hoersken Date: Tue, 24 Mar 2020 17:24:52 +0000 (+0100) Subject: CI: remove default Ubuntu build from GitHub Actions X-Git-Tag: curl-7_70_0~184 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7e8a1a087528cb265bae5c9fe346489871b5daa2;p=thirdparty%2Fcurl.git CI: remove default Ubuntu build from GitHub Actions We are already running a very similar Ubuntu build on Travis CI. The macOS variant of this default build is kept on Github Actions. --- diff --git a/.github/workflows/cpp.yml b/.github/workflows/cpp.yml deleted file mode 100644 index 94eb070d5e..0000000000 --- a/.github/workflows/cpp.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: Build on Ubuntu with default options - -on: [push] - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v1 - - name: configure - run: ./buildconf && ./configure - - name: make - run: make - - name: make check - run: make test-nonflaky