File: README.md

package info (click to toggle)
onevpl 2023.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 10,300 kB
  • sloc: cpp: 119,395; python: 7,297; ansic: 6,495; sh: 1,105; makefile: 11
file content (24 lines) | stat: -rw-r--r-- 935 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Introduction

This folder contains scripts that represent common tasks a developer (or CI)
needs to perform when working on the project. In particular this folder runs
tasks across multiple repos.

These scripts assume that all repos are clones under a single root folder, and
are in folders with the repo name.

The scripts are designed around the model described by
[Github](https://github.blog/2015-06-30-scripts-to-rule-them-all/)


# Scripts

- `clean` - Remove project build files. Will not remove installed files or
bootstrap files placed in `VPL_BUILD_DEPENDENCIES`.

- `bootstrap` - Build the project dependencies and place in the location
  specified by the `VPL_BUILD_DEPENDENCIES` environment variable. If environment
  variable is undefined, define it as and place output in `_deps`.

- `build` - Build and install the project. If the `VPL_INSTALL_DIR` environment
  variable is set, the package will be installed there.