Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove g++ 4.8 from CI #50

Merged
merged 1 commit into from
Aug 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 0 additions & 22 deletions .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,26 +23,8 @@ jobs:
#
# Virtual Environments: OSes and preinstalled software:
# https://github.com/actions/virtual-environments
#
# Many are commented out to avoid going over budget
matrix:
include:
- os: ubuntu-18.04
compiler: g++-4.8
# - os: ubuntu-16.04
# compiler: g++-5
# - os: ubuntu-18.04
# compiler: g++-7
# - os: ubuntu-18.04
# compiler: g++-8
# - os: ubuntu-18.04
# compiler: g++-9
# - os: ubuntu-18.04
# compiler: g++-10
# - os: ubuntu-18.04
# compiler: clang++-8
# - os: ubuntu-18.04
# compiler: clang++-9
- os: ubuntu-latest
compiler: g++
- os: macOS-latest
Expand All @@ -55,10 +37,6 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2

- name: Install old compiler
if: matrix.compiler == 'g++-4.8'
run: sudo apt-get install g++-4.8

# Run tests
- name: Run tests
env:
Expand Down
Loading