-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathconfig.yml
47 lines (47 loc) · 1.25 KB
/
config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# config file for circleci
version: 2.1
jobs:
build:
docker:
- image: cimg/base:2022.09
steps:
- checkout
- run:
name: update packages
command: sudo apt-get update
- run:
name: install packages
command: sudo apt-get install texinfo texi2html
- run:
name: configure
command: ./configure --prefix /tmp
- run:
name: make
command: make clean all threads cxx threadscxx
- run:
name: run utility
command: ./dmalloc
- run:
name: run tests
command: make tests
- run:
name: make installdocs
command: make installdocs
- run:
name: make distclean
command: make distclean
- run:
name: configure in subdir
command: mkdir x ; cd x ; ../configure --prefix /tmp
- run:
name: make in subdir
command: cd x ; make clean all threads cxx threadscxx
- run:
name: run utility in subdir
command: cd x ; ./dmalloc
- run:
name: run tests in subdir
command: cd x ; make tests
- run:
name: make installdocs in subdir
command: cd x ; make installdocs