@@ -3,10 +3,6 @@ name: ci - debian build
33on :
44 workflow_call :
55 inputs :
6- distinct_id :
7- description : " Distinct id"
8- required : false
9- type : string
106 workflow-files :
117 description : " Alpine: workflow-files files"
128 required : true
7167 workspace : ${{ github.workspace }}
7268
7369 steps :
74- - name : Checkout ${{ inputs.distinct_id }}
70+ - name : Checkout
7571 uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
7672 with :
7773 persist-credentials : false
8581 chmod +x "${script_name}"
8682 fi
8783
88- - name : Host - Create Docker template env file ${{ inputs.distinct_id }}
84+ - name : Host - Create Docker template env file
8985 run : |
9086 printf '%s\n' "qbt_revision_url=${{ github.repository }}" > env.custom
9187 printf '%s\n' "qbt_zlib_type=zlib" >> env.custom
@@ -113,7 +109,7 @@ jobs:
113109 printf '%s\n' "qbt_host_deps=${set_qbt_host_deps}" >> env.custom
114110 printf '%s\n\n' "qbt_host_deps_repo=${set_qbt_host_deps_repo}" >> env.custom
115111
116- - name : Host - Debian based specific env ${{ inputs.distinct_id }}
112+ - name : Host - Debian based specific env
117113 if : matrix.os_id != 'alpine'
118114 run : |
119115 printf '%s\n' "LANG=C.UTF-8" >> env.custom
@@ -132,68 +128,68 @@ jobs:
132128 os_version_id : ${{ matrix.os_version_id }}
133129 additional_apps : " curl git"
134130
135- - name : Host - patches ${{ inputs.distinct_id }}
131+ - name : Host - patches
136132 if : hashFiles('patches/**') != ''
137133 run : mkdir -p "${qbt_build_dir}/patches" && cp -rf patches/* "${qbt_build_dir}/patches/"
138134
139- - name : Docker - bootstrap_deps ${{ inputs.distinct_id }}
135+ - name : Docker - bootstrap_deps
140136 if : inputs.script_name == 'qbt-nox-static.bash'
141137 run : docker exec "${container_name}" bash "${script_name}" bootstrap_deps
142138
143- - name : Docker - Bootstrap build ${{ inputs.distinct_id }}
139+ - name : Docker - Bootstrap build
144140 run : docker exec "${container_name}" bash "${script_name}" -bs-a
145141
146- - name : Docker - glibc ${{ inputs.distinct_id }}
142+ - name : Docker - glibc
147143 if : matrix.os_id != 'alpine'
148144 run : docker exec "${container_name}" bash "${script_name}" glibc
149145
150- - name : Docker - zlib ${{ inputs.distinct_id }}
146+ - name : Docker - zlib
151147 run : docker exec "${container_name}" bash "${script_name}" zlib
152148
153- - name : Docker - iconv ${{ inputs.distinct_id }}
149+ - name : Docker - iconv
154150 if : matrix.qbt_libtorrent_version == '1.2'
155151 run : docker exec "${container_name}" bash "${script_name}" iconv
156152
157- - name : Docker - icu ${{ inputs.distinct_id }}
153+ - name : Docker - icu
158154 if : env.set_skip_icu == 'no'
159155 run : docker exec "${container_name}" bash "${script_name}" icu
160156
161- - name : Docker - openssl ${{ inputs.distinct_id }}
157+ - name : Docker - openssl
162158 run : docker exec "${container_name}" bash "${script_name}" openssl
163159
164- - name : Docker - boost ${{ inputs.distinct_id }}
160+ - name : Docker - boost
165161 run : docker exec "${container_name}" bash "${script_name}" boost
166162
167- - name : Docker - libtorrent ${{ inputs.distinct_id }}
163+ - name : Docker - libtorrent
168164 run : docker exec "${container_name}" bash "${script_name}" libtorrent
169165
170- # - name: Docker - double_conversion ${{ inputs.distinct_id }}
166+ # - name: Docker - double_conversion
171167 # if: matrix.qbt_build_tool == ''
172168 # run: docker exec "${container_name}" bash "${script_name}" double_conversion
173169
174- - name : Docker - qtbase ${{ inputs.distinct_id }}
170+ - name : Docker - qtbase
175171 run : docker exec "${container_name}" bash "${script_name}" qtbase
176172
177- - name : Docker - qttools ${{ inputs.distinct_id }}
173+ - name : Docker - qttools
178174 run : docker exec "${container_name}" bash "${script_name}" qttools
179175
180- - name : Docker - qbittorrent ${{ inputs.distinct_id }}
176+ - name : Docker - qbittorrent
181177 run : docker exec "${container_name}" bash "${script_name}" qbittorrent
182178
183- - name : Docker - Set release asset name ${{ inputs.distinct_id }}
179+ - name : Docker - Set release asset name
184180 run : docker exec -w ${wd}/${qbt_build_dir}/completed "${container_name}" mv -f qbittorrent-nox ${{ matrix.qbt_cross_name }}-${{ matrix.qbt_qt_version_name }}qbittorrent-nox
185181
186- # - name: Generate artifact attestation ${{ inputs.distinct_id }}
182+ # - name: Generate artifact attestation
187183 # uses: actions/attest-build-provenance@977bb373ede98d70efdf65b84cb5f73e068dcc2a # v3.0.0
188184 # with:
189185 # subject-path: "${{ env.qbt_build_dir }}/completed/${{ matrix.qbt_cross_name }}-${{ matrix.qbt_qt_version_name }}qbittorrent-nox"
190186
191- # - name: Docker - Release Info ${{ inputs.distinct_id }}
187+ # - name: Docker - Release Info
192188 # working-directory: "${{ env.workspace }}/${{ env.qbt_build_dir }}/release_info"
193189 # run: |
194190 # mv *.md *.json "${workspace}/${qbt_build_dir}/completed"
195191
196- # - name: Host - Upload libtorrent-v${{ matrix.qbt_libtorrent_version }}-qbittorrent-nox and release info artifact ${{ inputs.distinct_id }}
192+ # - name: Host - Upload libtorrent-v${{ matrix.qbt_libtorrent_version }}-qbittorrent-nox and release info artifact
197193 # if: success()
198194 # uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
199195 # with:
@@ -202,7 +198,7 @@ jobs:
202198 # ${{ env.qbt_build_dir }}/completed/*
203199 # !${{ env.qbt_build_dir }}/completed/*.png
204200
205- # - name: Host - Upload cmake graphs artifact ${{ inputs.distinct_id }}
201+ # - name: Host - Upload cmake graphs artifact
206202 # if: success() && matrix.qbt_build_tool == ''
207203 # uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
208204 # with:
0 commit comments