Skip to content

Commit 6ad6a8d

Browse files
committed
removed .travis.yml
1 parent e3a76b7 commit 6ad6a8d

File tree

2 files changed

+20
-87
lines changed

2 files changed

+20
-87
lines changed

.github/workflows/main.yml

+20-8
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,16 @@ jobs:
1616
include:
1717
- python: 2.7
1818
PLONE_VERSION: 4
19+
continue-on-error: false
1920
- python: 2.7
2021
PLONE_VERSION: 51
22+
continue-on-error: true
2123
- python: 3.7
2224
PLONE_VERSION: 52
25+
continue-on-error: true
2326
- python: 3.8
2427
PLONE_VERSION: 52
28+
continue-on-error: true
2529
steps:
2630
- name: Checkout
2731
uses: actions/checkout@v2
@@ -58,33 +62,33 @@ jobs:
5862
- name: test
5963
run: |
6064
bin/test
65+
continue-on-error: ${{matrix.continue-on-error}}
6166
coverage:
6267
runs-on: ubuntu-18.04
6368
strategy:
6469
fail-fast: false
6570
matrix:
66-
PLONE_VERSION: [52]
71+
PLONE_VERSION: [4]
6772
steps:
6873
- name: Checkout
6974
uses: actions/checkout@v2
70-
- name: Set up Python 3.8
75+
- name: Set up Python 2.7
7176
uses: actions/setup-python@v2
7277
with:
73-
python-version: 3.8
78+
python-version: 2.7
7479
- name: Setup Env
7580
run: |
7681
sudo apt-get update -qqy
7782
sudo apt-get install -qqy g++ libpng-dev cmake libqt4-dev libqt5widgets5 qttools5-dev
7883
wget -t 3 -T 60 --waitretry 5 -O zint-2.8.0.tar.gz https://sourceforge.net/projects/zint/files/zint/2.8.0/zint-2.8.0.tar.gz/download
7984
tar -xf zint-2.8.0.tar.gz
8085
cd zint-2.8.0
81-
sudo cmake .
82-
sudo make
83-
sudo make install
86+
sudo cmake .
87+
sudo make
88+
sudo make install
8489
cd ..
8590
mkdir -p buildout-cache/{eggs,downloads}
86-
pip install -r requirements.txt coverage==5.3.1
87-
pip install -U "coveralls>=3.0.0" coverage==5.3.1 --no-cache-dir
91+
pip install -r requirements.txt coverage==5.3.1 wheel
8892
- name: Cache eggs
8993
uses: actions/cache@v2
9094
env:
@@ -101,6 +105,14 @@ jobs:
101105
- name: test coverage
102106
run: |
103107
bin/coverage run bin/test
108+
- name: Set up Python 3.8
109+
uses: actions/setup-python@v2
110+
with:
111+
python-version: 3.8
112+
- name: Install Coveralls
113+
run: |
114+
pip3 install -U pip setuptools --no-cache-dir
115+
pip3 install -U "coveralls>=3.0.0" coverage==5.3.1 --no-cache-dir
104116
- name: Publish to Coveralls
105117
env:
106118
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.travis.yml

-79
This file was deleted.

0 commit comments

Comments
 (0)