@@ -3,11 +3,6 @@ name: Ubuntu
33on :
44 workflow_call :
55 inputs :
6- is_nightly :
7- description : ' Is nightly CI run'
8- required : false
9- type : boolean
10- default : false
116 ppc_tasks :
127 description : ' Tasks to build'
138 required : false
2823 password : ${{ secrets.GITHUB_TOKEN }}
2924 strategy :
3025 matrix :
31- os : ${{ fromJSON(inputs.is_nightly && ' ["ubuntu-24.04","ubuntu-24.04-arm"]' || '["ubuntu-24.04"]') }}
26+ os : ["ubuntu-24.04"]
3227 build_type : [Release, Debug]
3328 steps :
3429 - uses : actions/checkout@v6
8378 password : ${{ secrets.GITHUB_TOKEN }}
8479 strategy :
8580 matrix :
86- os : ${{ fromJSON(inputs.is_nightly && ' ["ubuntu-24.04","ubuntu-24.04-arm"]' || '["ubuntu-24.04"]') }}
81+ os : ["ubuntu-24.04"]
8782 steps :
8883 - uses : actions/checkout@v6
8984 - name : Download installed package
@@ -115,7 +110,7 @@ jobs:
115110 password : ${{ secrets.GITHUB_TOKEN }}
116111 strategy :
117112 matrix :
118- os : ${{ fromJSON(inputs.is_nightly && ' ["ubuntu-24.04","ubuntu-24.04-arm"]' || '["ubuntu-24.04"]') }}
113+ os : ["ubuntu-24.04"]
119114 steps :
120115 - uses : actions/checkout@v6
121116 - name : Download installed package
@@ -139,7 +134,7 @@ jobs:
139134 password : ${{ secrets.GITHUB_TOKEN }}
140135 strategy :
141136 matrix :
142- os : ${{ fromJSON(inputs.is_nightly && ' ["ubuntu-24.04","ubuntu-24.04-arm"]' || '["ubuntu-24.04"]') }}
137+ os : ["ubuntu-24.04"]
143138 steps :
144139 - uses : actions/checkout@v6
145140 with :
@@ -185,7 +180,7 @@ jobs:
185180 password : ${{ secrets.GITHUB_TOKEN }}
186181 strategy :
187182 matrix :
188- os : ${{ fromJSON(inputs.is_nightly && ' ["ubuntu-24.04","ubuntu-24.04-arm"]' || '["ubuntu-24.04"]') }}
183+ os : ["ubuntu-24.04"]
189184 steps :
190185 - uses : actions/checkout@v6
191186 - name : Download installed package
@@ -217,7 +212,7 @@ jobs:
217212 password : ${{ secrets.GITHUB_TOKEN }}
218213 strategy :
219214 matrix :
220- os : ${{ fromJSON(inputs.is_nightly && ' ["ubuntu-24.04","ubuntu-24.04-arm"]' || '["ubuntu-24.04"]') }}
215+ os : ["ubuntu-24.04"]
221216 steps :
222217 - uses : actions/checkout@v6
223218 - name : Download installed package
0 commit comments