-
-
Notifications
You must be signed in to change notification settings - Fork 158
128 lines (124 loc) · 5.11 KB
/
tests.yml
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: Tests
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize, reopened]
jobs:
Linter:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.8', '3.12']
os: [ubuntu-latest]
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
with:
submodules: true
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: .github/workflows/scripts/install_req_ubuntu.sh
if: ${{ matrix.os == 'ubuntu-latest' }}
- name: Lint with flake8
run: .github/workflows/scripts/lint_python.sh
- name: Lint with clang-format
run: .github/workflows/scripts/lint_cpp.sh
TenSEAL:
needs: [Linter]
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
with:
submodules: true
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
with:
python-version: ${{ matrix.python-version }}
- name: Check LongPathsEnabled
run: |
git config --system core.longpaths true
(Get-ItemProperty "HKLM:System\CurrentControlSet\Control\FileSystem").LongPathsEnabled
if: ${{ matrix.os == 'windows-latest' }}
- name: Prepare ENV
run: |
echo "CC=clang" >> $GITHUB_ENV
echo "CXX=clang++" >> $GITHUB_ENV
if: ${{ matrix.os == 'ubuntu-latest' }}
- name: Install dependencies Ubuntu
run: .github/workflows/scripts/install_req_ubuntu.sh
if: ${{ matrix.os == 'ubuntu-latest' }}
- name: Install dependencies MacOS
run: .github/workflows/scripts/install_req_macos.sh
if: ${{ matrix.os == 'macos-latest' }}
- name: Install dependencies Windows
run: .github/workflows/scripts/install_req_windows.bat
if: ${{ matrix.os == 'windows-latest' }}
- name: Install dependencies Windows - msbuild
uses: microsoft/setup-msbuild@6fb02220983dee41ce7ae257b6f4d8f9bf5ed4ce # v2
if: ${{ matrix.os == 'windows-latest' }}
- name: Build the library for Ubuntu/MacOS
run: .github/workflows/scripts/build_nix.sh
if: ${{ matrix.os != 'windows-latest' }}
- name: Build the library for Windows
run: .github/workflows/scripts/build_windows.bat
if: ${{ matrix.os == 'windows-latest' }}
- name: Test with pytest
run: pytest -m "not slow" -v ./tests/python/tenseal
- name: Test with gtest for Ubuntu/MacOS
run: .github/workflows/scripts/run_gtest_nix.sh
if: ${{ matrix.os != 'windows-latest' }}
- name: Test with gtest for Windows
run: .github/workflows/scripts/run_gtest_windows.bat
if: ${{ matrix.os == 'windows-latest' }}
SEAL_API:
needs: [Linter]
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
with:
submodules: true
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
with:
python-version: ${{ matrix.python-version }}
- name: Prepare ENV
run: |
echo "CC=clang" >> $GITHUB_ENV
echo "CXX=clang++" >> $GITHUB_ENV
if: ${{ matrix.os == 'ubuntu-latest' }}
- name: Check LongPathsEnabled
run: |
git config --system core.longpaths true
(Get-ItemProperty "HKLM:System\CurrentControlSet\Control\FileSystem").LongPathsEnabled
if: ${{ matrix.os == 'windows-latest' }}
- name: Install dependencies Ubuntu
run: .github/workflows/scripts/install_req_ubuntu.sh
if: ${{ matrix.os == 'ubuntu-latest' }}
- name: Install dependencies MacOS
run: .github/workflows/scripts/install_req_macos.sh
if: ${{ matrix.os == 'macos-latest' }}
- name: Install dependencies Windows
run: .github/workflows/scripts/install_req_windows.bat
if: ${{ matrix.os == 'windows-latest' }}
- name: Install dependencies Windows - msbuild
uses: microsoft/setup-msbuild@6fb02220983dee41ce7ae257b6f4d8f9bf5ed4ce # v2
if: ${{ matrix.os == 'windows-latest' }}
- name: Build the library for Ubuntu/MacOS
run: .github/workflows/scripts/build_nix.sh
if: ${{ matrix.os != 'windows-latest' }}
- name: Build the library for Windows
run: .github/workflows/scripts/build_windows.bat
if: ${{ matrix.os == 'windows-latest' }}
- name: Test with pytest
run: pytest -v ./tests/python/sealapi