Skip to content

Commit

Permalink
DependencyInstaller: Add docker-buildx package installation
Browse files Browse the repository at this point in the history
Signed-off-by: Eryk Szpotanski <[email protected]>
  • Loading branch information
eszpotanski committed Jul 25, 2024
1 parent a40a953 commit 4056d03
Showing 1 changed file with 20 additions and 19 deletions.
39 changes: 20 additions & 19 deletions etc/DependencyInstaller.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ _installUbuntuPackages() {
export DEBIAN_FRONTEND="noninteractive"
apt-get -y update
apt-get -y install --no-install-recommends \
curl \
libqt5multimediawidgets5 \
libqt5svg5-dev \
libqt5xmlpatterns5-dev \
Expand Down Expand Up @@ -103,24 +104,6 @@ _installUbuntuPackages() {
cd ${lastDir}
rm -rf "${baseDir}"
fi
}

_installDarwinPackages() {
brew install libffi tcl-tk ruby
brew install python libomp
brew link --force libomp
brew install --cask klayout
}

_installCI() {
apt-get -y update
apt-get -y install --no-install-recommends \
apt-transport-https \
ca-certificates \
coreutils \
curl \
python3 \
software-properties-common

# Add Docker's official GPG key:
install -m 0755 -d /etc/apt/keyrings
Expand All @@ -138,8 +121,26 @@ _installCI() {
docker-ce \
docker-ce-cli \
containerd.io \
docker-buildx-plugin \
docker-buildx-plugin
}

_installDarwinPackages() {
brew install libffi tcl-tk ruby
brew install python libomp
brew link --force libomp
brew install --cask klayout
brew install docker docker-buildx
}

_installCI() {
apt-get -y update
apt-get -y install --no-install-recommends \
apt-transport-https \
ca-certificates \
coreutils \
curl \
python3 \
software-properties-common
}

_help() {
Expand Down

0 comments on commit 4056d03

Please sign in to comment.