diff options
author | Marc Hoersken <info@marc-hoersken.de> | 2020-03-24 18:24:52 +0100 |
---|---|---|
committer | Marc Hoersken <info@marc-hoersken.de> | 2020-03-24 18:25:21 +0100 |
commit | 7e8a1a087528cb265bae5c9fe346489871b5daa2 (patch) | |
tree | 6f5dc368121d934e516bfb204969862b3038c0e9 /.github | |
parent | fd7afa7d3926cc79000edd2ef1c60275ab5a3587 (diff) | |
download | curl-7e8a1a087528cb265bae5c9fe346489871b5daa2.tar.gz |
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.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/cpp.yml | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/.github/workflows/cpp.yml b/.github/workflows/cpp.yml deleted file mode 100644 index 94eb070d5..000000000 --- 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 |