generic.yml 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436
  1. name: 'Build'
  2. run-name: 'Configure, Build and Test SDL'
  3. on:
  4. workflow_call:
  5. inputs:
  6. platforms:
  7. description: 'JSON-encoded test properties'
  8. type: string
  9. required: true
  10. jobs:
  11. build:
  12. name: ${{ matrix.platform.name }}
  13. runs-on: ${{ matrix.platform.os }}
  14. container: ${{ matrix.platform.container }}
  15. defaults:
  16. run:
  17. shell: ${{ matrix.platform.shell }}
  18. strategy:
  19. fail-fast: false
  20. matrix:
  21. platform: ${{ fromJSON(inputs.platforms) }}
  22. steps:
  23. - name: 'Set up MSYS2'
  24. if: ${{ matrix.platform.platform == 'msys2' }}
  25. uses: msys2/setup-msys2@v2
  26. with:
  27. msystem: ${{ matrix.platform.msys2-msystem }}
  28. install: >-
  29. ${{ matrix.platform.msys2-env }}-cc
  30. ${{ matrix.platform.msys2-env }}-cmake
  31. ${{ matrix.platform.msys2-env }}-ninja
  32. ${{ (!matrix.platform.msys2-no-perl && format('{0}-perl', matrix.platform.msys2-env)) || '' }}
  33. ${{ matrix.platform.msys2-env }}-pkg-config
  34. ${{ matrix.platform.msys2-env }}-clang-tools-extra
  35. ${{ (matrix.platform.ccache && format('{0}-ccache', matrix.platform.msys2-env)) || '' }}
  36. - name: 'About this job'
  37. run: |
  38. echo "key=${{ matrix.platform.key }}"
  39. echo "name=${{ matrix.platform.name }}"
  40. echo "os=${{ matrix.platform.os }}"
  41. echo ""
  42. echo "Add [sdl-ci-filter ${{ matrix.platform.key }}] to your commit message to reduce the number of jobs."
  43. - uses: actions/checkout@v4
  44. - name: 'Set up ninja'
  45. if: ${{ matrix.platform.setup-ninja }}
  46. uses: ./.github/actions/setup-ninja
  47. - name: 'Set up libusb for MSVC'
  48. if: ${{ matrix.platform.setup-libusb-arch != '' }}
  49. uses: ./.github/actions/setup-msvc-libusb
  50. with:
  51. arch: ${{ matrix.platform.setup-libusb-arch }}
  52. - uses: mymindstorm/setup-emsdk@v14
  53. if: ${{ matrix.platform.platform == 'emscripten' }}
  54. with:
  55. version: 3.1.35
  56. - uses: browser-actions/setup-chrome@v1
  57. id: setup-chrome
  58. if: ${{ matrix.platform.platform == 'emscripten' }}
  59. with:
  60. install-chromedriver: true
  61. - name: 'Add chrome to PATH'
  62. if: ${{ matrix.platform.platform == 'emscripten' }}
  63. run: |
  64. chrome_dir="$(dirname "${{ steps.setup-chrome.outputs.chrome-path }}")"
  65. chromedriver_dir="$(dirname "${{ steps.setup-chrome.outputs.chromedriver-path }}")"
  66. echo "CHROME_BINARY=${{ steps.setup-chrome.outputs.chrome-path }}" >>$GITHUB_ENV
  67. echo "CHROMEDRIVER_BINARY=${{ steps.setup-chrome.outputs.chromedriver-path }}" >>$GITHUB_ENV
  68. echo "chrome_dir=${chrome_dir}"
  69. echo "chromedriver_dir=${chromedriver_dir}"
  70. echo "${chrome_dir}" >>${GITHUB_PATH}
  71. echo "${chromedriver_dir}" >>${GITHUB_PATH}
  72. - uses: nttld/setup-ndk@v1
  73. if: ${{ matrix.platform.android-ndk }}
  74. id: setup-ndk
  75. with:
  76. local-cache: true
  77. ndk-version: r21e
  78. - name: 'Configure Android NDK variables'
  79. if: ${{ matrix.platform.android-ndk }}
  80. shell: sh
  81. run: |
  82. # We cannot use GitHub expressions in the controller job
  83. echo "ANDROID_NDK_HOME=${{ steps.setup-ndk.outputs.ndk-path }}" >>$GITHUB_ENV
  84. - uses: actions/setup-java@v4
  85. if: ${{ matrix.platform.java }}
  86. with:
  87. distribution: 'temurin'
  88. java-version: '17'
  89. - uses: ilammy/msvc-dev-cmd@v1
  90. if: ${{ matrix.platform.platform == 'msvc' }}
  91. with:
  92. arch: ${{ matrix.platform.msvc-vcvars-arch }}
  93. sdk: ${{ matrix.platform.msvc-vcvars-sdk }}
  94. - name: 'Set up Nokia N-Gage SDK'
  95. uses: ./.github/actions/setup-ngage-sdk
  96. if: ${{ matrix.platform.setup-ngage-sdk-path != '' }}
  97. with:
  98. path: '${{ matrix.platform.setup-ngage-sdk-path }}'
  99. - name: 'Set up Windows GDK Desktop'
  100. uses: ./.github/actions/setup-gdk-desktop
  101. if: ${{ matrix.platform.setup-gdk-folder != '' }}
  102. with:
  103. folder: '${{ matrix.platform.setup-gdk-folder }}'
  104. - name: 'Set up LoongArch64 toolchain'
  105. uses: ./.github/actions/setup-loongarch64-toolchain
  106. id: setup-loongarch64-toolchain
  107. if: ${{ matrix.platform.platform == 'loongarch64' }}
  108. - name: 'Setup Intel oneAPI toolchain'
  109. id: intel
  110. if: ${{ matrix.platform.intel }}
  111. run: |
  112. # Download the key to system keyring
  113. wget -O- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB \
  114. | gpg --dearmor | sudo tee /usr/share/keyrings/oneapi-archive-keyring.gpg > /dev/null
  115. # Add signed entry to apt sources and configure the APT client to use Intel repository:
  116. echo "deb [signed-by=/usr/share/keyrings/oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main" | sudo tee /etc/apt/sources.list.d/oneAPI.list
  117. # Update package list
  118. sudo apt-get update -y
  119. # Install oneAPI
  120. sudo apt-get install -y intel-oneapi-compiler-dpcpp-cpp-and-cpp-classic
  121. - name: 'Install apk packages'
  122. if: ${{ matrix.platform.apk-packages != '' }}
  123. run: |
  124. ${{ matrix.platform.sudo }} apk update
  125. ${{ matrix.platform.sudo }} apk add ${{ matrix.platform.apk-packages }}
  126. - name: 'Install apt packages'
  127. if: ${{ matrix.platform.apt-packages != '' }}
  128. run: |
  129. ${{ matrix.platform.sudo }} apt-get update
  130. ${{ matrix.platform.sudo }} apt-get install -y ${{ matrix.platform.apt-packages }}
  131. - name: 'Install brew packages'
  132. if: ${{ matrix.platform.brew-packages != '' }}
  133. run: |
  134. export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1
  135. brew update
  136. brew install ${{ matrix.platform.brew-packages }}
  137. - name: 'Setup Python'
  138. uses: 'actions/setup-python@main'
  139. if: ${{ matrix.platform.setup-python }}
  140. with:
  141. python-version: '3.x'
  142. - name: 'Install PyPI packages'
  143. if: ${{ matrix.platform.pypi-packages != '' }}
  144. run: |
  145. python -m pip install --user ${{ matrix.platform.pypi-packages }}
  146. - name: 'Set up GLES for VITA' # Must be after apk
  147. if: ${{ matrix.platform.setup-vita-gles-type != '' }}
  148. uses: ./.github/actions/setup-vita-gles
  149. with:
  150. type: ${{ matrix.platform.setup-vita-gles-type }}
  151. - name: 'Pollute toolchain with "bad" SDL headers'
  152. if: ${{ matrix.platform.pollute-directories != '' }}
  153. #shell: ${{ matrix.platform.shell }}
  154. run: |
  155. # Create "bad" SDL headers in the toolchain.
  156. # SDL sources should not use these.
  157. for include in ${{ matrix.platform.pollute-directories }}; do
  158. toolchain_directory="${include}/SDL3"
  159. echo "Creating directory ${toolchain_directory}"
  160. mkdir -p "${toolchain_directory}/SDL3"
  161. for header in include/SDL3/*.h; do
  162. dest="${toolchain_directory}/SDL3/$(basename "${header}")"
  163. echo "Creating ${dest}"
  164. echo '#error "System SDL headers must not be used by build system"' >"$dest"
  165. done
  166. done
  167. - name: 'Calculate ccache key'
  168. if: ${{ matrix.platform.ccache }}
  169. id: prepare-restore-ccache
  170. run: |
  171. echo "timestamp=$(date -u "+%Y%m%d%H%M_%S")" >> "$GITHUB_OUTPUT"
  172. - name: 'Restore ccache'
  173. if: ${{ matrix.platform.ccache }}
  174. uses: actions/cache/restore@v4
  175. id: restore-ccache
  176. with:
  177. path: ${{ runner.temp }}/ccache
  178. key: ccache-${{ matrix.platform.key }}-${{ steps.prepare-restore-ccache.outputs.timestamp }}
  179. restore-keys: |
  180. ccache-${{matrix.platform.key}}
  181. - name: 'Configure ccache'
  182. if: ${{ matrix.platform.ccache }}
  183. run: |
  184. echo 'CCACHE_DIR=${{ runner.temp }}/ccache' >>${GITHUB_ENV}
  185. - name: 'Prepare ccache'
  186. if: ${{ matrix.platform.ccache && steps.restore-ccache.outputs.cache-hit }}
  187. run: |
  188. if [ "x${{ runner.os }}" = "xmacOS" ]; then
  189. touch_date="2025-02-01T12:00:00Z"
  190. else
  191. touch_date="2025-02-01"
  192. fi
  193. find "${CCACHE_DIR}" -type f -exec touch -a -m -d "$touch_date" {} +
  194. ccache -s
  195. ccache -z
  196. - name: 'Configure (CMake)'
  197. if: ${{ !matrix.platform.no-cmake }}
  198. #shell: ${{ matrix.platform.shell }}
  199. run: |
  200. ${{ matrix.platform.source-cmd }}
  201. ${{ matrix.platform.cmake-config-emulator }} cmake -S . -B build -GNinja \
  202. -Wdeprecated -Wdev -Werror \
  203. ${{ matrix.platform.cmake-toolchain-file != '' && format('-DCMAKE_TOOLCHAIN_FILE={0}', matrix.platform.cmake-toolchain-file) || '' }} \
  204. -DSDL_WERROR=${{ matrix.platform.werror }} \
  205. -DSDL_EXAMPLES=${{ matrix.platform.build-tests }} \
  206. -DSDL_TESTS=${{ matrix.platform.build-tests }} \
  207. -DSDLTEST_TRACKMEM=ON \
  208. -DSDL_INSTALL_TESTS=${{ matrix.platform.build-tests }} \
  209. -DSDL_CLANG_TIDY=${{ matrix.platform.clang-tidy }} \
  210. -DSDL_INSTALL_DOCS=ON \
  211. -DSDL_INSTALL_CPACK=ON \
  212. -DSDL_INSTALL_DOCS=ON \
  213. ${{ matrix.platform.cmake-arguments }} \
  214. -DSDL_SHARED=${{ matrix.platform.shared }} \
  215. -DSDL_STATIC=${{ matrix.platform.static }} \
  216. -DSDL_VENDOR_INFO="Github Workflow" \
  217. -DCMAKE_INSTALL_PREFIX=prefix \
  218. -DCMAKE_INSTALL_LIBDIR=lib \
  219. -DCMAKE_BUILD_TYPE=${{ matrix.platform.cmake-build-type }}
  220. - name: 'Build (CMake)'
  221. id: build
  222. if: ${{ !matrix.platform.no-cmake }}
  223. # shell: ${{ matrix.platform.shell }}
  224. run: |
  225. ${{ matrix.platform.source-cmd }}
  226. cmake --build build --config ${{ matrix.platform.cmake-build-type }} --verbose -- ${{ matrix.platform.cmake-build-arguments }}
  227. - name: 'Verify SDL_REVISION'
  228. if: ${{ !matrix.platform.no-cmake }}
  229. run: |
  230. echo "This should show us the SDL_REVISION"
  231. echo "Shared library:"
  232. ${{ (matrix.platform.shared-lib && format('strings build/{0} | grep "Github Workflow"', matrix.platform.shared-lib)) || 'echo "<Shared library not supported by platform>"' }}
  233. echo "Static library:"
  234. ${{ (matrix.platform.static-lib && format('strings build/{0} | grep "Github Workflow"', matrix.platform.static-lib)) || 'echo "<Static library not supported by platform>"' }}
  235. - name: 'Run build-time tests (CMake)'
  236. id: tests
  237. if: ${{ !matrix.platform.no-cmake && matrix.platform.run-tests }}
  238. # shell: ${{ matrix.platform.shell }}
  239. run: |
  240. ${{ matrix.platform.source-cmd }}
  241. ${{ matrix.platform.pretest-cmd }}
  242. set -eu
  243. export SDL_TESTS_QUICK=1
  244. ctest -VV --test-dir build/ -j2
  245. - name: "Build test apk's (CMake)"
  246. id: apks
  247. if: ${{ always() && steps.build.outcome == 'success' && matrix.platform.android-apks != '' }}
  248. # shell: ${{ matrix.platform.shell }}
  249. run: |
  250. ${{ matrix.platform.source-cmd }}
  251. cmake --build build --config ${{ matrix.platform.cmake-build-type }} \
  252. --target \
  253. ${{ matrix.platform.android-apks }} \
  254. --verbose \
  255. -- ${{ matrix.platform.cmake-build-arguments }}
  256. - name: 'Install (CMake)'
  257. id: install
  258. if: ${{ always() && steps.build.outcome == 'success' }}
  259. # shell: ${{ matrix.platform.shell }}
  260. run: |
  261. ${{ matrix.platform.source-cmd }}
  262. cmake --install build --config ${{ matrix.platform.cmake-build-type }}
  263. echo "prefix=$(pwd)/prefix" >> $GITHUB_OUTPUT
  264. ( cd prefix; find . ) | LC_ALL=C sort -u
  265. - name: 'Package (CPack)'
  266. id: package
  267. if: ${{ always() && steps.build.outcome == 'success' }}
  268. # shell: ${{ matrix.platform.shell }}
  269. run: |
  270. # DMG creation on macOS occasionally fails, so try multiple times
  271. # https://gitlab.kitware.com/cmake/cmake/-/issues/25671
  272. success=0
  273. max_tries=10
  274. for i in $(seq $max_tries); do
  275. cmake --build build/ --config ${{ matrix.platform.cmake-build-type }} --target package -- ${{ matrix.platform.cmake-build-arguments }} && success=1
  276. if test $success = 1; then
  277. break
  278. fi
  279. echo "Package creation failed. Sleep 1 second and try again."
  280. sleep 1
  281. done
  282. if test $success = 0; then
  283. echo "Package creation failed after $max_tries attempts."
  284. exit 1
  285. fi
  286. - name: 'Verify CMake configuration files'
  287. if: ${{ steps.install.outcome == 'success' }}
  288. # shell: ${{ matrix.platform.shell }}
  289. run: |
  290. ${{ matrix.platform.source-cmd }}
  291. ${{ matrix.platform.cmake-config-emulator }} cmake -S cmake/test -B cmake_test_build -GNinja \
  292. ${{ matrix.platform.cmake-toolchain-file != '' && format('-DCMAKE_TOOLCHAIN_FILE={0}', matrix.platform.cmake-toolchain-file) || '' }} \
  293. -DTEST_SHARED=${{ matrix.platform.shared }} \
  294. -DTEST_STATIC=${{ matrix.platform.static }} \
  295. ${{ matrix.platform.cmake-arguments }} \
  296. -DCMAKE_BUILD_TYPE=${{ matrix.platform.cmake-build-type }} \
  297. -DCMAKE_PREFIX_PATH="${{ steps.install.outputs.prefix }}"
  298. cmake --build cmake_test_build --verbose --config ${{ matrix.platform.cmake-build-type }} -- ${{ matrix.platform.cmake-build-arguments }}
  299. - name: 'Extract CC/CXX/CFLAGS/CXXFLAGS from CMake toolchain'
  300. if: ${{ steps.install.outcome == 'success' && matrix.platform.cc-from-cmake }}
  301. # shell: ${{ matrix.platform.shell }}
  302. run: |
  303. cmake -S .github/cmake -B /tmp/cmake_extract \
  304. ${{ matrix.platform.cmake-toolchain-file != '' && format('-DCMAKE_TOOLCHAIN_FILE={0}', matrix.platform.cmake-toolchain-file) || '' }} \
  305. -DCMAKE_BUILD_TYPE=${{ matrix.platform.cmake-build-type }} \
  306. -DVAR_PATH=/tmp/env.txt
  307. cat /tmp/env.txt >> $GITHUB_ENV
  308. - name: 'Verify sdl3.pc'
  309. # shell: ${{ matrix.platform.shell }}
  310. if: ${{ steps.install.outcome == 'success' && matrix.platform.test-pkg-config }}
  311. run: |
  312. ${{ matrix.platform.source-cmd }}
  313. ${{ matrix.platform.cc && format('export CC="{0}"', matrix.platform.cc) || '' }}
  314. ${{ matrix.platform.cflags && format('export CFLAGS="{0}"', matrix.platform.cflags) || '' }}
  315. ${{ matrix.platform.ldflags && format('export LDFLAGS="{0}"', matrix.platform.ldflags) || '' }}
  316. export PKG_CONFIG_PATH=${{ steps.install.outputs.prefix }}/lib/pkgconfig
  317. cmake/test/test_pkgconfig.sh
  318. - name: 'Build (cross-platform-actions, BSD)'
  319. id: cpactions
  320. if: ${{ matrix.platform.cpactions }}
  321. uses: cross-platform-actions/[email protected]
  322. with:
  323. operating_system: '${{ matrix.platform.cpactions-os }}'
  324. architecture: '${{ matrix.platform.cpactions-arch }}'
  325. version: '${{ matrix.platform.cpactions-version }}'
  326. run: |
  327. ${{ matrix.platform.cpactions-setup-cmd }}
  328. ${{ matrix.platform.cpactions-install-cmd }}
  329. cmake -S . -B build -GNinja \
  330. ${{ matrix.platform.cmake-toolchain-file != '' && format('-DCMAKE_TOOLCHAIN_FILE={0}', matrix.platform.cmake-toolchain-file) || '' }} \
  331. -Wdeprecated -Wdev -Werror \
  332. -DSDL_WERROR=${{ matrix.platform.werror }} \
  333. -DSDL_INSTALL_DOCS=ON \
  334. ${{ matrix.platform.cmake-arguments }} \
  335. -DSDL_SHARED=${{ matrix.platform.shared }} \
  336. -DSDL_STATIC=${{ matrix.platform.static }} \
  337. -DSDL_VENDOR_INFO="Github Workflow" \
  338. -DCMAKE_INSTALL_PREFIX=prefix \
  339. -DCMAKE_INSTALL_LIBDIR=lib \
  340. -DCMAKE_BUILD_TYPE=${{ matrix.platform.cmake-build-type }}
  341. cmake --build build/ --config ${{ matrix.platform.cmake-build-type }} --verbose
  342. cmake --build build/ --config ${{ matrix.platform.cmake-build-type }} --target package
  343. cmake --build build/ --config ${{ matrix.platform.cmake-build-type }} --target clean
  344. rm -rf build/dist/_CPack_Packages
  345. rm -rf build/CMakeFiles
  346. rm -rf build/docs
  347. - name: Add msbuild to PATH
  348. id: setup-msbuild
  349. if: ${{ matrix.platform.msvc-project != '' }}
  350. uses: microsoft/setup-msbuild@v2
  351. - name: Build msbuild
  352. if: ${{ matrix.platform.msvc-project != '' }}
  353. run: |
  354. "$(cygpath -u '${{ steps.setup-msbuild.outputs.msbuildPath }}\msbuild.exe')" ${{ matrix.platform.msvc-project }} -m -p:BuildInParallel=true -p:Configuration=Release ${{ matrix.platform.msvc-project-flags }}
  355. - name: 'Build (Android.mk)'
  356. if: ${{ matrix.platform.android-mk }}
  357. run: |
  358. ./build-scripts/androidbuildlibs.sh
  359. - name: 'Create Gradle project (Android)'
  360. if: ${{ matrix.platform.android-gradle }}
  361. run: |
  362. for folder in build-ndk-build build-cmake; do
  363. python build-scripts/create-android-project.py \
  364. --output "${folder}" \
  365. --variant copy \
  366. org.libsdl.testspriteminimal \
  367. test/testspriteminimal.c test/icon.h
  368. done
  369. echo ""
  370. echo "Project contents:"
  371. echo ""
  372. find "build-ndk-build/org.libsdl.testspriteminimal"
  373. - name: 'Build Android app (Gradle & ndk-build)'
  374. if: ${{ matrix.platform.android-gradle }}
  375. run: |
  376. cd build-ndk-build/org.libsdl.testspriteminimal
  377. ./gradlew -i assembleRelease
  378. - name: 'Build Android app (Gradle & CMake)'
  379. if: ${{ matrix.platform.android-gradle }}
  380. run: |
  381. cd build-cmake/org.libsdl.testspriteminimal
  382. ./gradlew -i assembleRelease -PBUILD_WITH_CMAKE=1
  383. - name: 'Build (xcode)'
  384. if: ${{ matrix.platform.xcode-sdk != '' }}
  385. run: |
  386. xcodebuild -project Xcode/SDL/SDL.xcodeproj -target SDL3 -configuration Release -sdk ${{ matrix.platform.xcode-sdk }} clean build
  387. - name: 'Prune old ccache files'
  388. if: ${{ matrix.platform.ccache }}
  389. run: |
  390. ccache --evict-older-than=1d
  391. ccache -s
  392. - name: 'Save ccache'
  393. if: ${{ matrix.platform.ccache }}
  394. uses: actions/cache/save@v4
  395. with:
  396. path: ${{ runner.temp }}/ccache
  397. key: ${{ steps.restore-ccache.outputs.cache-primary-key }}
  398. - name: 'Check Sources'
  399. if: ${{ matrix.platform.check-sources }}
  400. run: |
  401. set -e
  402. build-scripts/test-versioning.sh
  403. python build-scripts/check_android_jni.py
  404. python build-scripts/check_stdlib_usage.py
  405. - name: 'Upload binary package'
  406. uses: actions/upload-artifact@v4
  407. if: ${{ always() && matrix.platform.artifact != '' && (steps.package.outcome == 'success' || steps.cpactions.outcome == 'success') && (matrix.platform.enable-artifacts || steps.tests.outcome == 'failure') }}
  408. with:
  409. if-no-files-found: error
  410. name: '${{ matrix.platform.artifact }}'
  411. path: |
  412. build/dist/SDL3*
  413. build/include*
  414. - name: 'Upload minidumps'
  415. uses: actions/upload-artifact@v4
  416. if: ${{ always() && steps.tests.outcome == 'failure' && (matrix.platform.platform == 'msvc' || matrix.platform.platform == 'msys2') }}
  417. with:
  418. if-no-files-found: ignore
  419. name: '${{ matrix.platform.artifact }}-minidumps'
  420. path: build/**/*.dmp
  421. - name: "Upload Android test apk's"
  422. uses: actions/upload-artifact@v4
  423. if: ${{ matrix.platform.enable-artifacts && always() && matrix.platform.artifact != '' && steps.apks.outcome == 'success' }}
  424. with:
  425. if-no-files-found: error
  426. name: '${{ matrix.platform.artifact }}-apks'
  427. path: build/test/*.apk