Sign inSign up

fourdollars/deb-versions-resource

By fourdollars

Updated 6 months ago

A Concourse CI's resource to watch the versions of Debian binary packages

Image
0

7.7K

fourdollars/deb-versions-resource repository overview

GitHub: fourdollars/deb-versions-resource License: MIT Bash Docker Docker Pulls

deb-versions-resource

concourse-ci's deb-versions-resource to watch the versions of Debian binary packages

Config

Resource Type
resource_types:
- name: resource-deb-versions
  type: registry-image
  source:
    repository: fourdollars/deb-versions-resource
    tag: latest

or

resource_types:
- name: resource-deb-versions
  type: registry-image
  source:
    repository: ghcr.io/fourdollars/deb-versions-resource
    tag: latest
Resource
  • mirror: optional, http://archive.ubuntu.com/ubuntu/ by default.
  • codename: optional, focal by default.
  • ppa: optional, ppa:YourName/YourPPA or the line of source list.
  • fingerprint: optional, the finerprint of the PPA.
  • username: optional, the username of the private PPA.
  • password: optional, the password of the private PPA.
  • packages: required, the Debian binary packages.
  • download: optional, false by default.
resources:
- name: versions
  type: resource-deb-versions
  check_every: 30m
  source:
    mirror: http://deb.debian.org/debian
    codename: buster
    ppa: "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main"
    fingerprint: EB4C1BFD4F042F6DDDCCEC917721F63BD38B4796
    packages:
      - firefox-esr
      - google-chrome-stable
    download: true
Example
jobs:
- name: check-versions
  plan:
  - get: versions
    trigger: true
  - task: check
    config:
      platform: linux
      image_resource:
        type: registry-image
        source:
          repository: busybox
      inputs:
        - name: versions
      run:
        path: sh
        args:
        - -exc
        - |
          cd versions
          cat versions.log
          ls -lh *

Tag summary

Content type

Image

Digest

sha256:e7867f243

Size

119.1 MB

Last updated

6 months ago

docker pull fourdollars/deb-versions-resource