File: .gitlab-ci.yml

package info (click to toggle)
simple-revision-control 1.41-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 364 kB
  • sloc: python: 2,675; sh: 1,810; makefile: 69
file content (17 lines) | stat: -rw-r--r-- 472 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# SPDX-FileCopyrightText: (C) Eric S. Raymond <esr@thyrsus.com>
# SPDX-License-Identifier: BSD-2-Clause
image: ubuntu

# tzdata has to be installed separately and early to avoid it trying
# to do manual zone configuration.
before_script:
  - apt-get update
  - apt-get -qy upgrade
  - apt-get -qy install tzdata
  - apt-get -y install make python3 cssc rcs git pip shellcheck pylint

test:
  script:
  - echo "Running as ${USER:-root}"
  - pylint --version
  - make check