Skip to content

Commit

Permalink
ci: split macos_codesign job
Browse files Browse the repository at this point in the history
  • Loading branch information
Lapshin committed Dec 15, 2023
1 parent 38c107b commit e84ce31
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -323,13 +323,11 @@ riscv32_esp_macos_arm64:
variables:
CONF_TARGET: "riscv32-esp-elf"

macos_codesign:
.template_macos_codesign:
stage: macos_codesign
when: manual
resource_group: macos_codesign
tags: [ "darwin", "codesign" ]
# list all jobs that produces macos distros
needs: [ xtensa_esp_macos_arm64, riscv32_esp_macos_arm64, xtensa_esp_macos, riscv32_esp_macos ]
artifacts:
paths:
- ${DIST_ART_DIR}
Expand All @@ -343,6 +341,22 @@ macos_codesign:
git clone -q --depth=1 ${NOTARIZATION_SCRIPTS_GIT}
- ./macos_codesign_notarization/run.sh

macos_codesign_xtensa_esp_macos_arm64:
extends: .template_macos_codesign
needs: [ xtensa_esp_macos_arm64 ]

macos_codesign_riscv32_esp_macos_arm64:
extends: .template_macos_codesign
needs: [ riscv32_esp_macos_arm64 ]

macos_codesign_xtensa_esp_macos:
extends: .template_macos_codesign
needs: [ xtensa_esp_macos ]

macos_codesign_riscv32_esp_macos:
extends: .template_macos_codesign
needs: [ riscv32_esp_macos ]

.template_win_cross:
extends: .build_template
image: $CI_DOCKER_REGISTRY/esp32-toolchain-win-cross
Expand Down

0 comments on commit e84ce31

Please sign in to comment.