Skip to content

jdub/debian-sources-resource

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Debian Sources Update Resource

A Concourse CI resource to check for updated Debian and Ubuntu compatible package sources.

Source Configuration

  • arch: Optional. The architecture to check for updates. Defaults to amd64.

  • sources: Required. A list of sources to check for updates, in sources.list deb line format.

Example

This pipeline will check the Ubuntu updates and security repositories every hour, triggering the next step of the build plan if there are any changes.

resource_types:
- name: debian-sources
  type: docker-image
  source:
    repository: jdub/debian-sources-resource

resources:
- name: ubuntu-sources
  type: debian-sources
  check_every: 1h
  source:
    arch: i386
    sources:
    - deb http://au.archive.ubuntu.com/ubuntu trusty-updates main restricted universe multiverse
    - deb http://security.ubuntu.com/ubuntu trusty-security main restricted universe multiverse

jobs:
- name: update-packages
  plan:
  - get: ubuntu-sources
    trigger: true
  - task: build-fresh-image
    ...

About

Concourse CI resource to check for updated Debian and Ubuntu compatible package sources

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages