Skip to content

Commit 144e583

Browse files
committed
Merge branch 'awake' into main
2 parents c3b7d88 + 778ff26 commit 144e583

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

.gitlab-ci.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22

33

4-
pages:
4+
'.common':
55
image: 'python:3.6'
66
before_script:
77
- 'apt-get --assume-yes --quiet update'
@@ -15,11 +15,17 @@ pages:
1515
script:
1616
- 'tox -e build'
1717
- 'cp -r build/html public'
18+
19+
'build':
20+
extends: '.common'
21+
22+
pages:
23+
extends: '.common'
1824
artifacts:
1925
paths:
2026
- 'public'
2127
only:
2228
- 'main'
2329

2430

25-
... EOF
31+
... # EOF

.travis.yml

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33

44
language: 'python'
55

6+
os:
7+
- 'linux'
8+
9+
sudo: false
10+
11+
python:
12+
- '3.6'
13+
614
addons:
715
apt:
816
packages:

tox.ini

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ envlist =
77
skipsdist = True
88

99
[testenv]
10+
basepython = python3.6
1011
commands =
1112
make
1213
deps =

0 commit comments

Comments
 (0)