-
Notifications
You must be signed in to change notification settings - Fork 73
134 lines (123 loc) · 4.77 KB
/
python-app-ci.yml
File metadata and controls
134 lines (123 loc) · 4.77 KB
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
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: GitHub Actions for keripy
on:
push:
branches:
- 'main'
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ macos-latest, ubuntu-latest, windows-latest ]
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12.6+
uses: actions/setup-python@v5
with:
python-version: '>=3.12.6'
- name: Install libsodium (macOS)
if: runner.os == 'macOS'
run: |
brew update
brew install libsodium
- name: Make libsodium discoverable
if: runner.os == 'macOS'
run: |
echo "DYLD_FALLBACK_LIBRARY_PATH=$(brew --prefix)/lib:/usr/local/lib:/usr/lib" >> "$GITHUB_ENV"
echo "DYLD_LIBRARY_PATH=$(brew --prefix)/lib" >> "$GITHUB_ENV"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if (Test-Path requirements.txt) { pip install -r requirements.txt }
shell: pwsh
- name: Lint changes
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --ignore=E7,F841,E301,E302,E303 --max-complexity=10 --max-line-length=127 --statistics
shell: pwsh
- name: Run core KERI tests
run: |
pytest tests/ --ignore tests/demo/ --ignore test/scripts
shell: pwsh
- name: Run KERI demo tests
run: |
pytest tests/demo/
shell: pwsh
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.12.6+
uses: actions/setup-python@v2
with:
python-version: '>=3.12.6'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest pytest-cov hio
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run core KERI tests
run: |
pytest --cov=./ --cov-report=xml
- name: Upload
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
scripts:
runs-on: ubuntu-latest
timeout-minutes: 25
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.12.6+
uses: actions/setup-python@v2
with:
python-version: '>=3.12.6'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest pytest-cov hio pytest-shell
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run KERI kli tests
run: |
./scripts/demo/test_scripts.sh
interop-setup:
runs-on: ubuntu-latest
if: github.event_name == 'push' && github.ref == 'refs/heads/interop'
outputs:
CACHE_KEY_INTEROP: ${{ steps.cache.outputs.CACHE_KEY_INTEROP }}
GITHUB_REPOSITORY_NAME: ${{ steps.cache.outputs.GITHUB_REPOSITORY_NAME }}
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Set outputs
id: cache
run: |
echo "::set-output name=CACHE_KEY_INTEROP::${{ hashFiles('.github/workflows/interop/Dockerfile') }}"
echo "::set-output name=GITHUB_REPOSITORY_NAME::$(echo ${GITHUB_REPOSITORY,,})"
build-interop-image:
needs: [ interop-setup, test ]
runs-on: ubuntu-latest
env:
DOCKER_BUILDKIT: 1
CACHE_KEY_INTEROP: ${{ needs.interop-setup.outputs.CACHE_KEY_INTEROP }}
GITHUB_REPOSITORY_NAME: ${{ needs.interop-setup.outputs.GITHUB_REPOSITORY_NAME }}
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: interop
run: |
echo ${{ secrets.CR_PAT }} | docker login ghcr.io --username ${{ secrets.CR_USER }} --password-stdin
docker build -f .github/workflows/interop/Dockerfile --no-cache -t ${{ env.GITHUB_REPOSITORY_NAME }}/keripy-interop:${{ env.CACHE_KEY_INTEROP }} .
docker tag ${{ env.GITHUB_REPOSITORY_NAME }}/keripy-interop:${{ env.CACHE_KEY_INTEROP }} ghcr.io/${{ env.GITHUB_REPOSITORY_NAME }}/keripy-interop:latest
docker push ghcr.io/${{ env.GITHUB_REPOSITORY_NAME }}/keripy-interop:latest
mkdir -p ${GITHUB_WORKSPACE}/cache
touch ${GITHUB_WORKSPACE}/cache/${{ env.CACHE_KEY_INTEROP }}