-
Notifications
You must be signed in to change notification settings - Fork 25
41 lines (40 loc) · 1.1 KB
/
test-full.yml
File metadata and controls
41 lines (40 loc) · 1.1 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
name: Run PAR2 Create Tests
on:
workflow_dispatch:
# push:
jobs:
test-node:
strategy:
fail-fast: false
matrix:
include:
- version: '0.10.48'
flags: ''
python: '2.7'
- version: '4.9.1'
flags: ''
python: '2.7'
- version: '12.22.12'
flags: '--trace-warnings'
python: '3.9'
- version: '21.0.0'
flags: '--pending-deprecation --throw-deprecation --trace-warnings --openssl-legacy-provider'
python: ''
name: Test on Node v${{ matrix.version }}
runs-on: ubuntu-latest
steps:
- run: sudo apt-get install -y gdb
- uses: MatteoH2O1999/setup-python@v2
with:
python-version: ${{ matrix.python }}
if: ${{ matrix.python != '' }}
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.version }}
- run: npm install --production
env:
CFLAGS: -ggdb
CXXFLAGS: -ggdb
- run: node ${{ matrix.flags }} par-compare.js -f -d
working-directory: test