-
Notifications
You must be signed in to change notification settings - Fork 0
135 lines (128 loc) · 4.26 KB
/
main.yaml
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
name: main
on:
push:
branches:
- main
tags:
- v*.*.*
pull_request:
branches:
- main
jobs:
# Test (Linux)
test-linux:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: make install
- name: Prepare secrets
if: env.DFOUR_ENDPOINT != null
run: |-
echo DFOUR_ENDPOINT=$DFOUR_ENDPOINT > .env
echo DFOUR_USERNAME=$DFOUR_USERNAME >> .env
echo DFOUR_PASSWORD=$DFOUR_PASSWORD >> .env
echo DFOUR_WORKSPACE=$DFOUR_WORKSPACE >> .env
echo DFOUR_SNAPSHOT=$DFOUR_SNAPSHOT >> .env
env:
DFOUR_ENDPOINT: ${{ secrets.DFOUR_ENDPOINT }}
DFOUR_USERNAME: ${{ secrets.DFOUR_USERNAME }}
DFOUR_PASSWORD: ${{ secrets.DFOUR_PASSWORD }}
DFOUR_SNAPSHOT: ${{ secrets.DFOUR_SNAPSHOT }}
DFOUR_WORKSPACE: ${{ secrets.DFOUR_WORKSPACE }}
- name: Test software
run: make test-ci
- name: Report coverage
uses: codecov/codecov-action@v1
# Test (MacOS)
test-macos:
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Prepare secrets
if: env.DFOUR_ENDPOINT != null
run: |-
echo DFOUR_ENDPOINT=$DFOUR_ENDPOINT > .env
echo DFOUR_USERNAME=$DFOUR_USERNAME >> .env
echo DFOUR_PASSWORD=$DFOUR_PASSWORD >> .env
echo DFOUR_WORKSPACE=$DFOUR_WORKSPACE >> .env
echo DFOUR_SNAPSHOT=$DFOUR_SNAPSHOT >> .env
env:
DFOUR_ENDPOINT: ${{ secrets.DFOUR_ENDPOINT }}
DFOUR_USERNAME: ${{ secrets.DFOUR_USERNAME }}
DFOUR_PASSWORD: ${{ secrets.DFOUR_PASSWORD }}
DFOUR_SNAPSHOT: ${{ secrets.DFOUR_SNAPSHOT }}
DFOUR_WORKSPACE: ${{ secrets.DFOUR_WORKSPACE }}
- name: Install dependencies
# https://stackoverflow.com/questions/9678408/cant-install-psycopg2-with-pip-in-virtualenv-on-mac-os-x-10-7
run: LDFLAGS=`echo $(pg_config --ldflags)` make install
- name: Test software
run: make test
# Test (Windows)
test-windows:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: make install
- name: Prepare secrets
if: env.DFOUR_ENDPOINT != null
run: |-
echo DFOUR_ENDPOINT=$DFOUR_ENDPOINT > .env
echo DFOUR_USERNAME=$DFOUR_USERNAME >> .env
echo DFOUR_PASSWORD=$DFOUR_PASSWORD >> .env
echo DFOUR_WORKSPACE=$DFOUR_WORKSPACE >> .env
echo DFOUR_SNAPSHOT=$DFOUR_SNAPSHOT >> .env
env:
DFOUR_ENDPOINT: ${{ secrets.DFOUR_ENDPOINT }}
DFOUR_USERNAME: ${{ secrets.DFOUR_USERNAME }}
DFOUR_PASSWORD: ${{ secrets.DFOUR_PASSWORD }}
DFOUR_SNAPSHOT: ${{ secrets.DFOUR_SNAPSHOT }}
DFOUR_WORKSPACE: ${{ secrets.DFOUR_WORKSPACE }}
- name: Test software
run: make test
# Release
release:
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
needs: [test-linux, test-macos, test-windows]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel
- name: Build distribution
run: |
python setup.py sdist bdist_wheel
- name: Publish to PYPI
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.PYPI_API_KEY }}
- name: Release to GitHub
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}