-
Notifications
You must be signed in to change notification settings - Fork 6
Split docker images #1
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
deb http://ppa.launchpad.net/ubuntu-toolchain-r/ppa/ubuntu bionic main | ||
deb http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu bionic main | ||
deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-6.0 main | ||
deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-7 main | ||
deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-8 main | ||
|
||
deb-src http://ppa.launchpad.net/ubuntu-toolchain-r/ppa/ubuntu bionic main | ||
deb-src http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu bionic main | ||
deb-src http://apt.llvm.org/bionic/ llvm-toolchain-bionic-6.0 main | ||
deb-src http://apt.llvm.org/bionic/ llvm-toolchain-bionic-7 main | ||
deb-src http://apt.llvm.org/bionic/ llvm-toolchain-bionic-8 main |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
deb http://ppa.launchpad.net/ubuntu-toolchain-r/ppa/ubuntu focal main | ||
deb http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu focal main | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I see the ubuntu-toolchain-r repository is used to download gcc-11 on focal, right? I think that's a good idea! I wondered why ruby/ruby's |
||
deb http://apt.llvm.org/focal/ llvm-toolchain-focal-9 main | ||
deb http://apt.llvm.org/focal/ llvm-toolchain-focal-10 main | ||
deb http://apt.llvm.org/focal/ llvm-toolchain-focal-11 main | ||
deb http://apt.llvm.org/focal/ llvm-toolchain-focal-12 main | ||
deb http://apt.llvm.org/focal/ llvm-toolchain-focal main | ||
|
||
deb-src http://ppa.launchpad.net/ubuntu-toolchain-r/ppa/ubuntu focal main | ||
deb-src http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu focal main | ||
deb-src http://apt.llvm.org/focal/ llvm-toolchain-focal-9 main | ||
deb-src http://apt.llvm.org/focal/ llvm-toolchain-focal-10 main | ||
deb-src http://apt.llvm.org/focal/ llvm-toolchain-focal-11 main | ||
deb-src http://apt.llvm.org/focal/ llvm-toolchain-focal-12 main | ||
deb-src http://apt.llvm.org/focal/ llvm-toolchain-focal main | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I suppose the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah I found the |
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is great to see that we start to use the docker/setup-buildx-action. At the moment, the published platform is only amd64 right? I could not find other platform's info for example on this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No other packages at this moment but I'm open to add one if necessary.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK. I might suggest to add other platforms
arm64
,ppc64le
,s390x
with a PR in near future. These platforms could be used in Travis.