Skip to content

NUA build lifecycle

Nua

  • addons
  • prep
  • build
  • install
  • cleanup

Addons specifications:

addons:
  apt:
    sources:
    - deadsnakes
    - sourceline: 'ppa:ubuntu-toolchain-r/test'
    - sourceline: 'deb https://packagecloud.io/chef/stable/ubuntu/precise main'
      key_url: 'https://packagecloud.io/gpg.key'
[build.addons]
sources = [
    "deadsnakes",
    "ppa:ubuntu-toolchain-r/test",
    { source ="https://packagecloud.io/chef/stable/ubuntu/precise main". key_url = "https://packagecloud.io/gpg.key"},
]
packages = [
    "gcc-4.8",
    "foobar",
]

[run.addons]
# same format

RPM

  • prep
  • build
  • install

Ref: https://janikvonrotz.ch/2019/03/20/the-final-rpm-packaging-guide/

Travis

Each job is a sequence of phases. The main phases are:

  1. install - install any dependencies required
  2. script - run the build script

Travis CI can run custom commands in the phases:

  1. before_install - before the install phase
  2. before_script - before the script phase
  3. after_script - after the script phase.

The complete sequence of phases of a job is the lifecycle. The steps are:

  1. OPTIONAL Install apt addons
  2. OPTIONAL Install cache components
  3. before_install
  4. install
  5. before_script
  6. script

Gentoo

The ebuild file format is in its basic form a subset of the format of a bash script.

Homebrew

https://docs.brew.sh/Formula-Cookbook

Page last modified: 2024-02-13 10:02:46