Skip to content

Commit

Permalink
Drop support for GCC 7
Browse files Browse the repository at this point in the history
  • Loading branch information
oschuett committed Jul 12, 2023
1 parent 11d6cc0 commit f3ef421
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 132 deletions.
6 changes: 0 additions & 6 deletions tools/dashboard/dashboard.conf
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,6 @@ name: Ubuntu, GCC 8 (ssmp)
host: GCP
report_url: https://storage.googleapis.com/cp2k-ci/dashboard_gcc8_report.txt

[gcc7]
sortkey: 456
name: Ubuntu, GCC 7 (ssmp)
host: GCP
report_url: https://storage.googleapis.com/cp2k-ci/dashboard_gcc7_report.txt

# ==============================================================================

[cuda-pascal]
Expand Down
118 changes: 0 additions & 118 deletions tools/docker/Dockerfile.test_gcc7

This file was deleted.

7 changes: 0 additions & 7 deletions tools/docker/cp2k-ci.conf
Original file line number Diff line number Diff line change
Expand Up @@ -135,13 +135,6 @@ dockerfile: /tools/docker/Dockerfile.test_asan-psmp

#-------------------------------------------------------------------------------

[gcc7]
display_name: Ubuntu, GCC 7 (ssmp)
cpu: 32
nodepools: pool-t2d-32
build_path: /
dockerfile: /tools/docker/Dockerfile.test_gcc7

[gcc8]
display_name: Ubuntu, GCC 8 (ssmp)
cpu: 32
Expand Down
2 changes: 1 addition & 1 deletion tools/docker/generate_dockerfiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def main() -> None:
with OutputFile(f"Dockerfile.test_coverage-{version}", args.check) as f:
f.write(toolchain_full() + coverage(version))

for gcc_version in 7, 8, 9, 10, 11, 12:
for gcc_version in 8, 9, 10, 11, 12:
with OutputFile(f"Dockerfile.test_gcc{gcc_version}", args.check) as f:
img = "ubuntu:22.04" if gcc_version > 8 else "ubuntu:20.04"
f.write(toolchain_ubuntu_nompi(base_image=img, gcc_version=gcc_version))
Expand Down

0 comments on commit f3ef421

Please sign in to comment.