@@ -26,98 +26,98 @@ concurrency:
26
26
27
27
jobs :
28
28
29
- labeler :
30
- name : " Labels"
31
- permissions :
32
- contents : read
33
- pull-requests : write
34
- runs-on : ubuntu-latest
35
- steps :
36
- - uses : actions/checkout@v4
37
-
38
- - name : " Update labels"
39
- uses : micnncim/action-label-syncer@v1
40
- env :
41
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
42
-
43
- - name : " Label pull-request"
44
-
45
- with :
46
- repo-token : ${{ secrets.GITHUB_TOKEN }}
47
-
48
- changelog-fragment :
49
- name : " Create changelog fragment"
50
- needs : labeler
51
- permissions :
52
- contents : write
53
- pull-requests : write
54
- runs-on : ubuntu-latest
55
- steps :
56
- - uses : ansys/actions/doc-changelog@v10
57
- with :
58
- token : ${{ secrets.PYANSYS_CI_BOT_TOKEN }}
59
- use-conventional-commits : true
60
- use-default-towncrier-config : true
61
- bot-user : ${{ secrets.PYANSYS_CI_BOT_USERNAME }}
62
- bot-email : ${{ secrets.PYANSYS_CI_BOT_EMAIL }}
63
-
64
- code-style :
65
- name : " Code style checks"
66
- runs-on : ubuntu-latest
67
- needs : changelog-fragment
68
- steps :
69
- - uses : ansys/actions/code-style@v10
70
- with :
71
- python-version : ${{ env.MAIN_PYTHON_VERSION }}
72
-
73
- doc-style :
74
- name : " Documentation style checks"
75
- runs-on : ubuntu-latest
76
- needs : changelog-fragment
77
- steps :
78
- - uses : ansys/actions/doc-style@v10
79
- with :
80
- token : ${{ secrets.GITHUB_TOKEN }}
81
-
82
- check-vulnerabilities :
83
- name : " Check library vulnerabilities"
84
- runs-on : ubuntu-latest
85
- needs : code-style
86
- steps :
87
- - uses : ansys/actions/check-vulnerabilities@main
88
- with :
89
- python-version : ${{ env.MAIN_PYTHON_VERSION }}
90
- token : ${{ secrets.PYANSYS_CI_BOT_TOKEN }}
91
- python-package-name : ${{ env.LIBRARY_NAME }}
92
- dev-mode : ${{ github.ref != 'refs/heads/main' }}
93
- upload-reports : True
94
- hide-log : false
95
- bandit-configfile : " pyproject.toml"
96
-
97
- wheelhouse :
98
- name : " Wheelhouse / ${{ matrix.os }} / ${{ matrix.python-version }}"
99
- runs-on : ${{ matrix.os }}
100
- needs : check-vulnerabilities
101
- strategy :
102
- fail-fast : false
103
- matrix :
104
- os : [ubuntu-latest, windows-latest, macos-latest]
105
- python-version : ["3.10", "3.11", "3.12", "3.13"]
106
- should-release :
107
- - ${{ github.event_name == 'push' && contains(github.ref, 'refs/tags') }}
108
- exclude :
109
- - should-release : false
110
- os : macos-latest
111
- steps :
112
- -
uses :
ansys/actions/[email protected]
113
- with :
114
- library-name : ${{ env.PACKAGE_NAME }}
115
- operating-system : ${{ matrix.os }}
116
- python-version : ${{ matrix.python-version }}
29
+ # labeler:
30
+ # name: "Labels"
31
+ # permissions:
32
+ # contents: read
33
+ # pull-requests: write
34
+ # runs-on: ubuntu-latest
35
+ # steps:
36
+ # - uses: actions/checkout@v4
37
+
38
+ # - name: "Update labels"
39
+ # uses: micnncim/action-label-syncer@v1
40
+ # env:
41
+ # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
42
+
43
+ # - name: "Label pull-request"
44
+
45
+ # with:
46
+ # repo-token: ${{ secrets.GITHUB_TOKEN }}
47
+
48
+ # changelog-fragment:
49
+ # name: "Create changelog fragment"
50
+ # needs: labeler
51
+ # permissions:
52
+ # contents: write
53
+ # pull-requests: write
54
+ # runs-on: ubuntu-latest
55
+ # steps:
56
+ # - uses: ansys/actions/doc-changelog@v10
57
+ # with:
58
+ # token: ${{ secrets.PYANSYS_CI_BOT_TOKEN }}
59
+ # use-conventional-commits: true
60
+ # use-default-towncrier-config: true
61
+ # bot-user: ${{ secrets.PYANSYS_CI_BOT_USERNAME }}
62
+ # bot-email: ${{ secrets.PYANSYS_CI_BOT_EMAIL }}
63
+
64
+ # code-style:
65
+ # name: "Code style checks"
66
+ # runs-on: ubuntu-latest
67
+ # needs: changelog-fragment
68
+ # steps:
69
+ # - uses: ansys/actions/code-style@v10
70
+ # with:
71
+ # python-version: ${{ env.MAIN_PYTHON_VERSION }}
72
+
73
+ # doc-style:
74
+ # name: "Documentation style checks"
75
+ # runs-on: ubuntu-latest
76
+ # needs: changelog-fragment
77
+ # steps:
78
+ # - uses: ansys/actions/doc-style@v10
79
+ # with:
80
+ # token: ${{ secrets.GITHUB_TOKEN }}
81
+
82
+ # check-vulnerabilities:
83
+ # name: "Check library vulnerabilities"
84
+ # runs-on: ubuntu-latest
85
+ # needs: code-style
86
+ # steps:
87
+ # - uses: ansys/actions/check-vulnerabilities@main
88
+ # with:
89
+ # python-version: ${{ env.MAIN_PYTHON_VERSION }}
90
+ # token: ${{ secrets.PYANSYS_CI_BOT_TOKEN }}
91
+ # python-package-name: ${{ env.LIBRARY_NAME }}
92
+ # dev-mode: ${{ github.ref != 'refs/heads/main' }}
93
+ # upload-reports: True
94
+ # hide-log: false
95
+ # bandit-configfile: "pyproject.toml"
96
+
97
+ # wheelhouse:
98
+ # name: "Wheelhouse / ${{ matrix.os }} / ${{ matrix.python-version }}"
99
+ # runs-on: ${{ matrix.os }}
100
+ # needs: check-vulnerabilities
101
+ # strategy:
102
+ # fail-fast: false
103
+ # matrix:
104
+ # os: [ubuntu-latest, windows-latest, macos-latest]
105
+ # python-version: ["3.10", "3.11", "3.12", "3.13"]
106
+ # should-release:
107
+ # - ${{ github.event_name == 'push' && contains(github.ref, 'refs/tags') }}
108
+ # exclude:
109
+ # - should-release: false
110
+ # os: macos-latest
111
+ # steps:
112
+ # - uses: ansys/actions/[email protected]
113
+ # with:
114
+ # library-name: ${{ env.PACKAGE_NAME }}
115
+ # operating-system: ${{ matrix.os }}
116
+ # python-version: ${{ matrix.python-version }}
117
117
118
118
doc-build :
119
119
name : " Documentation build"
120
- needs : doc-style
120
+ # needs: doc-style
121
121
runs-on : ubuntu-latest
122
122
env :
123
123
PYFLUENT_CONTAINER_MOUNT_SOURCE : " /home/ansys/Downloads/ansys_fluent_core_examples"
0 commit comments