Skip to content

Commit

Permalink
Cleanup GCC
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbeckingsale committed Dec 12, 2023
1 parent 578684f commit 000637c
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 11 deletions.
3 changes: 1 addition & 2 deletions ubuntu/clang/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
ARG ubuntu_version
FROM ghcr.io/llnl/ubuntu:$ubuntu_version

# Install llvm with spack
# ARG llvm_version
ARG llvm_version
ENV llvm_version=${llvm_version}

RUN \
Expand Down
11 changes: 5 additions & 6 deletions ubuntu/gcc/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
ARG ubuntu_version
#FROM ghcr.io/rse-ops/ubuntu:$ubuntu_version
FROM ubuntu-base
# ARG gcc_version
# ENV gcc_version=$gcc_version
ENV gcc_version=9
FROM ghcr.io/llnl/ubuntu:$ubuntu_version

ARG gcc_version
ENV gcc_version=$gcc_version

RUN \
sudo apt-get -qq update \
Expand All @@ -17,4 +16,4 @@ RUN \
&& sudo apt-get clean

USER radiuss
WORKDIR /home/radiuss
WORKDIR /home/radiuss
15 changes: 12 additions & 3 deletions ubuntu/gcc/uptodate.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,23 @@
dockerbuild:

exclude:
gcc_version: ["11", "12", "13", "8", "9", "10"]
ubuntu_version: ["20.04", "20.04", "20.04", "22.04", "22.04", "22.04"]

build_args:
gcc_version:
key: gcc
versions:
- "9.4.0"
- "10.3.0"
- "11.2.0"
- "8"
- "9"
- "10" #20.04
- "11"
- "12"
- "13"

# Look for ubuntu versions for our base builds
ubuntu_version:
key: ubuntu
versions:
- "20.04"
- "22.04"

0 comments on commit 000637c

Please sign in to comment.