-
Notifications
You must be signed in to change notification settings - Fork 0
125 lines (101 loc) · 4.92 KB
/
integration-test.yml
File metadata and controls
125 lines (101 loc) · 4.92 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
name: Integration Tests
on:
schedule:
# Run weekly on Sunday at midnight UTC
- cron: '0 0 * * 0'
workflow_dispatch:
# Allow manual trigger
permissions:
contents: read
jobs:
# ==========================================================================
# Runtime Installation Tests (install, list, global, local, etc.)
# ==========================================================================
node:
name: Node.js
uses: CodingWithCalvin/.github/.github/workflows/dtvem-integration-test-node.yml@main
with:
version1: '20.18.0'
version2: '22.11.0'
python:
name: Python
uses: CodingWithCalvin/.github/.github/workflows/dtvem-integration-test-python.yml@main
with:
version1: '3.11.9'
version2: '3.12.7'
ruby:
name: Ruby
uses: CodingWithCalvin/.github/.github/workflows/dtvem-integration-test-ruby.yml@main
with:
version1: '3.3.6'
version2: '3.4.1'
# ==========================================================================
# Partial Version Resolution Tests
# ==========================================================================
partial-versions:
name: Partial Version Resolution
uses: CodingWithCalvin/.github/.github/workflows/dtvem-integration-test-partial-versions.yml@main
with:
node_major: '22'
node_major_minor: '20.18'
python_major: '3'
python_major_minor: '3.12'
ruby_major: '3'
ruby_major_minor: '3.3'
# ==========================================================================
# Migration Tests
# ==========================================================================
migrate-node-ubuntu-system:
name: Migrate Node.js from System (Ubuntu)
uses: CodingWithCalvin/.github/.github/workflows/dtvem-integration-test-migrate-node-ubuntu-system.yml@main
migrate-node-ubuntu-nvm:
name: Migrate Node.js from nvm (Ubuntu)
uses: CodingWithCalvin/.github/.github/workflows/dtvem-integration-test-migrate-node-ubuntu-nvm.yml@main
migrate-node-macos-system:
name: Migrate Node.js from System (macOS)
uses: CodingWithCalvin/.github/.github/workflows/dtvem-integration-test-migrate-node-macos-system.yml@main
migrate-node-windows-system:
name: Migrate Node.js from System (Windows)
uses: CodingWithCalvin/.github/.github/workflows/dtvem-integration-test-migrate-node-windows-system.yml@main
migrate-node-macos-fnm:
name: Migrate Node.js from fnm (macOS)
uses: CodingWithCalvin/.github/.github/workflows/dtvem-integration-test-migrate-node-macos-fnm.yml@main
migrate-node-windows-nvm:
name: Migrate Node.js from nvm-windows (Windows)
uses: CodingWithCalvin/.github/.github/workflows/dtvem-integration-test-migrate-node-windows-nvm.yml@main
migrate-python-ubuntu-system:
name: Migrate Python from System (Ubuntu)
uses: CodingWithCalvin/.github/.github/workflows/dtvem-integration-test-migrate-python-ubuntu-system.yml@main
migrate-python-ubuntu-pyenv:
name: Migrate Python from pyenv (Ubuntu)
uses: CodingWithCalvin/.github/.github/workflows/dtvem-integration-test-migrate-python-ubuntu-pyenv.yml@main
migrate-python-macos-system:
name: Migrate Python from System (macOS)
uses: CodingWithCalvin/.github/.github/workflows/dtvem-integration-test-migrate-python-macos-system.yml@main
migrate-python-macos-pyenv:
name: Migrate Python from pyenv (macOS)
uses: CodingWithCalvin/.github/.github/workflows/dtvem-integration-test-migrate-python-macos-pyenv.yml@main
migrate-python-windows-system:
name: Migrate Python from System (Windows)
uses: CodingWithCalvin/.github/.github/workflows/dtvem-integration-test-migrate-python-windows-system.yml@main
migrate-python-windows-pyenv:
name: Migrate Python from pyenv-win (Windows)
uses: CodingWithCalvin/.github/.github/workflows/dtvem-integration-test-migrate-python-windows-pyenv.yml@main
migrate-ruby-ubuntu-system:
name: Migrate Ruby from System (Ubuntu)
uses: CodingWithCalvin/.github/.github/workflows/dtvem-integration-test-migrate-ruby-ubuntu-system.yml@main
migrate-ruby-ubuntu-rbenv:
name: Migrate Ruby from rbenv (Ubuntu)
uses: CodingWithCalvin/.github/.github/workflows/dtvem-integration-test-migrate-ruby-ubuntu-rbenv.yml@main
migrate-ruby-macos-system:
name: Migrate Ruby from System (macOS)
uses: CodingWithCalvin/.github/.github/workflows/dtvem-integration-test-migrate-ruby-macos-system.yml@main
migrate-ruby-macos-rbenv:
name: Migrate Ruby from rbenv (macOS)
uses: CodingWithCalvin/.github/.github/workflows/dtvem-integration-test-migrate-ruby-macos-rbenv.yml@main
migrate-ruby-windows-system:
name: Migrate Ruby from System (Windows)
uses: CodingWithCalvin/.github/.github/workflows/dtvem-integration-test-migrate-ruby-windows-system.yml@main
migrate-ruby-windows-uru:
name: Migrate Ruby from uru (Windows)
uses: CodingWithCalvin/.github/.github/workflows/dtvem-integration-test-migrate-ruby-windows-uru.yml@main