-
Notifications
You must be signed in to change notification settings - Fork 2
128 lines (121 loc) · 3.52 KB
/
ci.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
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
POETRY_VIRTUALENVS_IN_PROJECT: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: poetry
- name: Install package
run: poetry install
- name: Run linters
run: poetry run poe lint
test-build-only:
needs: lint
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: macos-latest
python: "3.10"
- os: windows-latest
python: "3.10"
steps:
- uses: actions/checkout@v3
- run: pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
cache: poetry
- name: Install package
run: poetry install -E crypto
test:
needs: lint
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- run: pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
cache: poetry
- name: Install package
run: poetry install -E crypto
- name: Start integration services
run: |
timeout 120s ./scripts/start-docker.sh
- name: Run tests
run: poetry run poe test
- name: Stop integration services
if: always()
run: |
docker compose ps --all
echo 'docker compose logs nionic'
docker compose down
tests-passing:
if: always()
needs: [test,test-build-only]
runs-on: ubuntu-latest
steps:
- uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}
release:
needs: tests-passing
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.NIO_BOT_TOKEN }}
- run: pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: poetry
- name: Bump version
uses: TriPSs/conventional-changelog-action@v3
id: version
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
git-user-name: "GitHub Actions"
git-user-email: "[email protected]"
version-file: pyproject.toml
version-path: tool.poetry.version
preset: conventionalcommits
output-file: false
- name: Set new commit hash
run: echo "SHA=$(git rev-parse HEAD)" >> $GITHUB_ENV
- name: Create release
uses: actions/create-release@v1
if: ${{ steps.version.outputs.skipped == 'false' }}
env:
GITHUB_TOKEN: ${{ secrets.NIO_BOT_TOKEN }}
with:
tag_name: ${{ steps.version.outputs.tag }}
release_name: ${{ steps.version.outputs.tag }}
body: ${{ steps.version.outputs.clean_changelog }}
commitish: ${{ env.SHA }}
- name: Publish to PyPI
if: ${{ steps.version.outputs.skipped == 'false' }}
env:
# https://github.com/python-poetry/poetry/issues/2359
POETRY_HTTP_BASIC_PYPI_USERNAME: __token__
POETRY_HTTP_BASIC_PYPI_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: poetry publish --build --no-interaction