forked from python/cpython
-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (53 loc) · 1.29 KB
/
build.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
48
49
50
51
52
53
54
55
56
57
58
59
name: Build and Test
on:
push:
branches:
- 'opensuse_3.6'
pull_request:
branches:
- 'opensuse_3.6'
jobs:
build_and_test:
runs-on: ubuntu-latest
strategy:
matrix:
docker: [opensuse/leap]
container: ${{ matrix.docker }}
steps:
- run: zypper -n install
rpm-build
pkg-config
autoconf-archive
ccache
gdb
lcov
gdbm-devel
libbz2-devel
libb2-devel
libffi-devel
liblzma5
libopenssl-3-devel
mpdecimal-devel
ncurses5-devel
readline6-devel
sqlite3-devel
strace
tk-devel
uuid-devel
xvfb-run
xz-devel
zlib-devel
# - run: ./configure --with-pydebug
# - run: make -j
# - run: ./python -m test -j
# # - run: git clone --depth=1 --branch=3.12 http://www.github.com/python/cpython
- run: pwd
- run: cd .. && find .
- name: Build
working-directory: cpython
run: |
./configure --with-pydebug
make -j
- name: Test
working-directory: cpython
run: ./python -m test -j3