Fix aptRepo usage
This commit is contained in:
parent
7375e67c0b
commit
8326c7f558
|
@ -26,7 +26,7 @@ install:
|
||||||
aptKey:
|
aptKey:
|
||||||
- "https://downloads.ceylon-lang.org/apt/ceylon-debian-repo.gpg.key"
|
- "https://downloads.ceylon-lang.org/apt/ceylon-debian-repo.gpg.key"
|
||||||
aptRepo:
|
aptRepo:
|
||||||
- "https://downloads.ceylon-lang.org/apt/ unstable main"
|
- "deb [arch=amd64] https://downloads.ceylon-lang.org/apt/ unstable main"
|
||||||
<<: *add-ceylon-repo
|
<<: *add-ceylon-repo
|
||||||
apt:
|
apt:
|
||||||
- $(grep-aptavail -F Package ceylon -s Package -n | sort -rV | head -n1)
|
- $(grep-aptavail -F Package ceylon -s Package -n | sort -rV | head -n1)
|
||||||
|
|
|
@ -23,7 +23,7 @@ install:
|
||||||
aptKey:
|
aptKey:
|
||||||
- "https://keybase.io/crystal/pgp_keys.asc"
|
- "https://keybase.io/crystal/pgp_keys.asc"
|
||||||
aptRepo:
|
aptRepo:
|
||||||
- "https://dist.crystal-lang.org/apt crystal main"
|
- "deb [arch=amd64] https://dist.crystal-lang.org/apt crystal main"
|
||||||
apt:
|
apt:
|
||||||
- crystal
|
- crystal
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ install:
|
||||||
aptKey:
|
aptKey:
|
||||||
- "https://dl-ssl.google.com/linux/linux_signing_key.pub"
|
- "https://dl-ssl.google.com/linux/linux_signing_key.pub"
|
||||||
aptRepo:
|
aptRepo:
|
||||||
- "https://storage.googleapis.com/download.dartlang.org/linux/debian stable main"
|
- "deb [arch=amd64] https://storage.googleapis.com/download.dartlang.org/linux/debian stable main"
|
||||||
apt:
|
apt:
|
||||||
- dart
|
- dart
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ install:
|
||||||
aptKey:
|
aptKey:
|
||||||
- "B4112585D386EB94"
|
- "B4112585D386EB94"
|
||||||
aptRepo:
|
aptRepo:
|
||||||
- "https://dl.hhvm.com/ubuntu ${ubuntu_name} main"
|
- "deb [arch=amd64] https://dl.hhvm.com/ubuntu ${ubuntu_name} main"
|
||||||
apt:
|
apt:
|
||||||
- hhvm
|
- hhvm
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ name: "MongoDB"
|
||||||
install:
|
install:
|
||||||
prepare:
|
prepare:
|
||||||
aptRepo:
|
aptRepo:
|
||||||
- "http://archive.ubuntu.com/ubuntu/ focal main universe"
|
- "deb [arch=amd64] http://archive.ubuntu.com/ubuntu/ focal main universe"
|
||||||
manual: |
|
manual: |
|
||||||
for name in mongodb mongodb-clients mongodb-server mongodb-server-core; do
|
for name in mongodb mongodb-clients mongodb-server mongodb-server-core; do
|
||||||
apt-get download "${name}"
|
apt-get download "${name}"
|
||||||
|
|
|
@ -8,7 +8,7 @@ install:
|
||||||
aptKey:
|
aptKey:
|
||||||
- "E298A3A825C0D65DFD57CBB651716619E084DAB9"
|
- "E298A3A825C0D65DFD57CBB651716619E084DAB9"
|
||||||
aptRepo:
|
aptRepo:
|
||||||
- "https://cloud.r-project.org/bin/linux/ubuntu ${ubuntu_name}-$(curl -fsSL https://cran.r-project.org/bin/linux/ubuntu/ | grep -Eo 'cran[0-9]+' | head -n1)/"
|
- "deb [arch=amd64] https://cloud.r-project.org/bin/linux/ubuntu ${ubuntu_name}-$(curl -fsSL https://cran.r-project.org/bin/linux/ubuntu/ | grep -Eo 'cran[0-9]+' | head -n1)/"
|
||||||
apt:
|
apt:
|
||||||
- r-base
|
- r-base
|
||||||
|
|
||||||
|
|
|
@ -533,9 +533,9 @@ properties:
|
||||||
type: array
|
type: array
|
||||||
items:
|
items:
|
||||||
type: string
|
type: string
|
||||||
pattern: "^https?://"
|
pattern: "^deb"
|
||||||
examples:
|
examples:
|
||||||
- "https://downloads.ceylon-lang.org/apt/ unstable main"
|
- "deb [arch=amd64] https://downloads.ceylon-lang.org/apt/ unstable main"
|
||||||
apt:
|
apt:
|
||||||
type: array
|
type: array
|
||||||
items:
|
items:
|
||||||
|
|
Loading…
Reference in New Issue