Skip to content

Commit 231f72f

Browse files
authored
[SSS Review] CI/CD Maintenance for v1.7.0 (#145)
1 parent 0c66d5c commit 231f72f

13 files changed

+217
-1
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Run Backward Compatibility Test - Tensorflow 2.14 MCTQ v1.6.0
2+
on:
3+
workflow_dispatch: # Allow manual triggers
4+
schedule:
5+
- cron: 0 0 * * *
6+
pull_request:
7+
8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref }}
10+
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
11+
12+
jobs:
13+
run-comp-tensorflow-2_14-v1_6_0:
14+
uses: ./.github/workflows/compatibility_keras_tests.yml
15+
with:
16+
save_version: "v1.6.0"
17+
python_version: "3.10"
18+
tf_version: "2.14.*"
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Run Backward Compatibility Test - Tensorflow 2.15 MCTQ v1.6.0
2+
on:
3+
workflow_dispatch: # Allow manual triggers
4+
schedule:
5+
- cron: 0 0 * * *
6+
pull_request:
7+
8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref }}
10+
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
11+
12+
jobs:
13+
run-comp-tensorflow-2_15-v1_6_0:
14+
uses: ./.github/workflows/compatibility_keras_tests.yml
15+
with:
16+
save_version: "v1.6.0"
17+
python_version: "3.10"
18+
tf_version: "2.15.*"
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Run Backward Compatibility Test - Pytorch 2.3 MCTQ v1.6.0
2+
on:
3+
workflow_dispatch: # Allow manual triggers
4+
schedule:
5+
- cron: 0 0 * * *
6+
pull_request:
7+
8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref }}
10+
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
11+
12+
jobs:
13+
run-comp-torch-2_3-v1_6_0:
14+
uses: ./.github/workflows/compatibility_torch_tests.yml
15+
with:
16+
save_version: "v1.6.0"
17+
python_version: "3.12"
18+
torch_version: "2.3.*"
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Run Backward Compatibility Test - Pytorch 2.4 MCTQ v1.6.0
2+
on:
3+
workflow_dispatch: # Allow manual triggers
4+
schedule:
5+
- cron: 0 0 * * *
6+
pull_request:
7+
8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref }}
10+
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
11+
12+
jobs:
13+
run-comp-torch-2_4-v1_6_0:
14+
uses: ./.github/workflows/compatibility_torch_tests.yml
15+
with:
16+
save_version: "v1.6.0"
17+
python_version: "3.12"
18+
torch_version: "2.4.*"
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Run Backward Compatibility Test - Pytorch 2.5 MCTQ v1.6.0
2+
on:
3+
workflow_dispatch: # Allow manual triggers
4+
schedule:
5+
- cron: 0 0 * * *
6+
pull_request:
7+
8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref }}
10+
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
11+
12+
jobs:
13+
run-comp-torch-2_5-v1_6_0:
14+
uses: ./.github/workflows/compatibility_torch_tests.yml
15+
with:
16+
save_version: "v1.6.0"
17+
python_version: "3.12"
18+
torch_version: "2.5.*"
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Run Backward Compatibility Test - Pytorch 2.6 MCTQ v1.6.0
2+
on:
3+
workflow_dispatch: # Allow manual triggers
4+
schedule:
5+
- cron: 0 0 * * *
6+
pull_request:
7+
8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref }}
10+
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
11+
12+
jobs:
13+
run-comp-torch-2_6-v1_6_0:
14+
uses: ./.github/workflows/compatibility_torch_tests.yml
15+
with:
16+
save_version: "v1.6.0"
17+
python_version: "3.12"
18+
torch_version: "2.6.*"
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Run Forward Compatibility Test - Tensorflow 2.14 MCTQ v1.6.0
2+
on:
3+
workflow_dispatch: # Allow manual triggers
4+
schedule:
5+
- cron: 0 0 * * *
6+
pull_request:
7+
8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref }}
10+
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
11+
12+
jobs:
13+
run-forward-comp-tensorflow-2_14-v1_6_0:
14+
uses: ./.github/workflows/forward_compatibility_keras_tests.yml
15+
with:
16+
load_version: "v1.6.0"
17+
python_version: "3.10"
18+
tf_version: "2.14.*"
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Run Forward Compatibility Test - Tensorflow 2.15 MCTQ v1.6.0
2+
on:
3+
workflow_dispatch: # Allow manual triggers
4+
schedule:
5+
- cron: 0 0 * * *
6+
pull_request:
7+
8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref }}
10+
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
11+
12+
jobs:
13+
run-forward-comp-tensorflow-2_15-v1_6_0:
14+
uses: ./.github/workflows/forward_compatibility_keras_tests.yml
15+
with:
16+
load_version: "v1.6.0"
17+
python_version: "3.10"
18+
tf_version: "2.15.*"
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Run Forward Compatibility Test - Pytorch 2.3 MCTQ v1.6.0
2+
on:
3+
workflow_dispatch: # Allow manual triggers
4+
schedule:
5+
- cron: 0 0 * * *
6+
pull_request:
7+
8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref }}
10+
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
11+
12+
jobs:
13+
run-comp-torch-2_3-v1_6_0:
14+
uses: ./.github/workflows/forward_compatibility_torch_tests.yml
15+
with:
16+
load_version: "v1.6.0"
17+
python_version: "3.12"
18+
torch_version: "2.3.*"
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Run Forward Compatibility Test - Pytorch 2.4 MCTQ v1.6.0
2+
on:
3+
workflow_dispatch: # Allow manual triggers
4+
schedule:
5+
- cron: 0 0 * * *
6+
pull_request:
7+
8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref }}
10+
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
11+
12+
jobs:
13+
run-comp-torch-2_4-v1_6_0:
14+
uses: ./.github/workflows/forward_compatibility_torch_tests.yml
15+
with:
16+
load_version: "v1.6.0"
17+
python_version: "3.12"
18+
torch_version: "2.4.*"

0 commit comments

Comments
 (0)