2023-05-01 16:39:23 -06:00
|
|
|
version: 2.1
|
|
|
|
|
|
|
|
######################################
|
|
|
|
# PIPELINE PARAMETERS
|
|
|
|
######################################
|
|
|
|
parameters:
|
|
|
|
action:
|
|
|
|
type: enum
|
2023-12-04 12:48:58 -07:00
|
|
|
enum: [no_action, nightly_build, manual_build, release_build, afs_collector]
|
2023-05-01 16:52:13 -06:00
|
|
|
default: no_action
|
2023-08-24 19:21:12 -06:00
|
|
|
release_version:
|
|
|
|
type: string
|
|
|
|
default: "NO_RELEASE_VERSION_SET"
|
|
|
|
|
2023-05-01 16:39:23 -06:00
|
|
|
|
2023-05-05 19:20:29 -06:00
|
|
|
######################################
|
|
|
|
# REUSABLE COMMANDS
|
|
|
|
######################################
|
|
|
|
commands:
|
|
|
|
update_config_mk:
|
|
|
|
description: "Update variables in config.mk"
|
|
|
|
steps:
|
|
|
|
- run:
|
|
|
|
name: Update Config.mk
|
|
|
|
command: |
|
|
|
|
export MY_WORKING_DIRECTORY=`pwd`
|
|
|
|
printf -v BUILD_DATE '%(%Y%m%d)T' -1
|
|
|
|
sed -i "s/NoCall/${BUILD_DATE}/g" ${MY_WORKING_DIRECTORY}/config.mk
|
|
|
|
sed -i "s/MAKE_ARGS=-j3/MAKE_ARGS=-j${DASH_J_VALUE}/g" ${MY_WORKING_DIRECTORY}/config.mk
|
|
|
|
cat ${MY_WORKING_DIRECTORY}/config.mk
|
2023-08-24 19:21:12 -06:00
|
|
|
|
|
|
|
update_config_mk_release:
|
|
|
|
description: "Update variables in config.mk for release"
|
|
|
|
steps:
|
|
|
|
- run:
|
|
|
|
name: Update Config.mk Release
|
|
|
|
command: |
|
|
|
|
export MY_WORKING_DIRECTORY=`pwd`
|
2023-08-24 19:28:23 -06:00
|
|
|
sed -i "s/FW_VERSION=\$(PRIVATE_BUILD_VERSION)-\$(GIT_COMMIT)/FW_VERSION=\$(PRIVATE_BUILD_VERSION)/g" ${MY_WORKING_DIRECTORY}/Makefile
|
2023-08-24 19:21:12 -06:00
|
|
|
sed -i "s/NoCall/<< pipeline.parameters.release_version >>/g" ${MY_WORKING_DIRECTORY}/config.mk
|
2024-04-24 09:04:35 -06:00
|
|
|
sed -i "s/releases\/3\/24/<< pipeline.parameters.release_version >>/g" ${MY_WORKING_DIRECTORY}/config.mk
|
2023-08-24 19:21:12 -06:00
|
|
|
sed -i "s/MAKE_ARGS=-j3/MAKE_ARGS=-j${DASH_J_VALUE}/g" ${MY_WORKING_DIRECTORY}/config.mk
|
2023-08-25 06:31:00 -06:00
|
|
|
sed -i "s/develop/<< pipeline.parameters.release_version >>/g" ${MY_WORKING_DIRECTORY}/feeds.conf
|
2023-08-24 19:21:12 -06:00
|
|
|
cat ${MY_WORKING_DIRECTORY}/config.mk
|
2023-05-05 19:20:29 -06:00
|
|
|
|
2023-05-01 16:39:23 -06:00
|
|
|
######################################
|
|
|
|
# JOBS
|
|
|
|
######################################
|
2018-07-09 08:03:44 -06:00
|
|
|
jobs:
|
|
|
|
build:
|
2022-12-23 08:10:58 -07:00
|
|
|
resource_class: large
|
2018-07-09 08:03:44 -06:00
|
|
|
docker:
|
2021-11-19 20:48:30 -07:00
|
|
|
- image: arednmesh/builder
|
|
|
|
|
2018-07-09 08:03:44 -06:00
|
|
|
steps:
|
|
|
|
- checkout
|
2023-05-05 19:20:29 -06:00
|
|
|
- update_config_mk
|
2018-07-09 08:03:44 -06:00
|
|
|
- run:
|
2023-05-05 19:20:29 -06:00
|
|
|
name: Build ath79/generic
|
2022-12-22 13:22:49 -07:00
|
|
|
command: make MAINTARGET=ath79 SUBTARGET=generic
|
2021-11-19 14:13:15 -07:00
|
|
|
no_output_timeout: 2h
|
2018-07-11 21:50:28 -06:00
|
|
|
- run:
|
2023-05-05 19:20:29 -06:00
|
|
|
name: Build ath79/tiny
|
2022-12-22 13:22:49 -07:00
|
|
|
command: make MAINTARGET=ath79 SUBTARGET=tiny
|
2021-11-19 14:13:15 -07:00
|
|
|
no_output_timeout: 1h
|
2020-01-22 18:37:27 -07:00
|
|
|
- run:
|
2023-05-05 19:20:29 -06:00
|
|
|
name: Build ath79/mikrotik
|
2022-12-22 13:22:49 -07:00
|
|
|
command: make MAINTARGET=ath79 SUBTARGET=mikrotik
|
2021-11-19 14:13:15 -07:00
|
|
|
no_output_timeout: 1h
|
2022-12-22 13:22:49 -07:00
|
|
|
- run:
|
2023-05-05 19:20:29 -06:00
|
|
|
name: Build ath79/mikrotik/ath10k
|
2022-12-22 13:22:49 -07:00
|
|
|
command: make MAINTARGET=ath79 SUBTARGET=mikrotik ALTTARGET=ath10k
|
|
|
|
no_output_timeout: 1h
|
2022-12-22 22:34:43 -07:00
|
|
|
- run:
|
2023-05-05 19:20:29 -06:00
|
|
|
name: Build ath79/mikrotik/nand
|
2022-12-22 22:34:43 -07:00
|
|
|
command: make MAINTARGET=ath79 SUBTARGET=mikrotik ALTTARGET=nand
|
|
|
|
no_output_timeout: 1h
|
2022-12-22 13:22:49 -07:00
|
|
|
- run:
|
2023-05-05 19:20:29 -06:00
|
|
|
name: Build ath79/nand
|
2022-12-22 13:22:49 -07:00
|
|
|
command: make MAINTARGET=ath79 SUBTARGET=nand
|
|
|
|
no_output_timeout: 1h
|
2023-12-06 11:12:11 -07:00
|
|
|
- run:
|
|
|
|
name: Build ipq40xx/generic
|
|
|
|
command: make MAINTARGET=ipq40xx SUBTARGET=generic
|
|
|
|
no_output_timeout: 2h
|
2022-12-22 13:22:49 -07:00
|
|
|
- run:
|
2023-05-05 19:20:29 -06:00
|
|
|
name: Build ipq40xx/mikrotik
|
2022-12-22 13:22:49 -07:00
|
|
|
command: make MAINTARGET=ipq40xx SUBTARGET=mikrotik
|
2023-12-06 11:12:11 -07:00
|
|
|
no_output_timeout: 1h
|
2023-12-14 21:38:49 -07:00
|
|
|
- run:
|
|
|
|
name: Build x64/64
|
|
|
|
command: make MAINTARGET=x86 SUBTARGET=64
|
|
|
|
no_output_timeout: 2h
|
2023-12-06 11:12:11 -07:00
|
|
|
- run:
|
|
|
|
name: Build ramips/mt7621
|
2023-12-09 08:20:06 -07:00
|
|
|
command: make MAINTARGET=ramips SUBTARGET=mt7621
|
2023-12-06 11:12:11 -07:00
|
|
|
no_output_timeout: 2h
|
2018-07-09 08:03:44 -06:00
|
|
|
- run:
|
|
|
|
name: Compress build files
|
2018-07-12 08:39:08 -06:00
|
|
|
command: tar -cjf ~/${CIRCLE_BRANCH}_${ARTIFACTS_FILE} -C ${MY_WORKING_DIRECTORY}/${ARTIFACTS_DIR} .
|
2018-07-09 08:03:44 -06:00
|
|
|
- run:
|
|
|
|
name: Deploy Files
|
2024-05-05 00:15:33 -06:00
|
|
|
command: scp -P ${SSH_PORT} -o StrictHostKeyChecking=no ~/${CIRCLE_BRANCH}_${ARTIFACTS_FILE} ${SSH_USER}@${SSH_HOST2}:${TARGET_DIR}
|
2023-04-18 11:15:51 -06:00
|
|
|
|
2023-08-24 19:21:12 -06:00
|
|
|
build_release:
|
|
|
|
resource_class: large
|
|
|
|
docker:
|
|
|
|
- image: arednmesh/builder
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- update_config_mk_release
|
|
|
|
- run:
|
|
|
|
name: Build ath79/generic
|
|
|
|
command: make MAINTARGET=ath79 SUBTARGET=generic
|
|
|
|
no_output_timeout: 2h
|
|
|
|
- run:
|
|
|
|
name: Build ath79/tiny
|
|
|
|
command: make MAINTARGET=ath79 SUBTARGET=tiny
|
|
|
|
no_output_timeout: 1h
|
|
|
|
- run:
|
|
|
|
name: Build ath79/mikrotik
|
|
|
|
command: make MAINTARGET=ath79 SUBTARGET=mikrotik
|
|
|
|
no_output_timeout: 1h
|
|
|
|
- run:
|
|
|
|
name: Build ath79/mikrotik/ath10k
|
|
|
|
command: make MAINTARGET=ath79 SUBTARGET=mikrotik ALTTARGET=ath10k
|
|
|
|
no_output_timeout: 1h
|
|
|
|
- run:
|
|
|
|
name: Build ath79/mikrotik/nand
|
|
|
|
command: make MAINTARGET=ath79 SUBTARGET=mikrotik ALTTARGET=nand
|
|
|
|
no_output_timeout: 1h
|
|
|
|
- run:
|
|
|
|
name: Build ath79/nand
|
|
|
|
command: make MAINTARGET=ath79 SUBTARGET=nand
|
|
|
|
no_output_timeout: 1h
|
2023-12-06 11:12:11 -07:00
|
|
|
- run:
|
|
|
|
name: Build ipq40xx/generic
|
|
|
|
command: make MAINTARGET=ipq40xx SUBTARGET=generic
|
|
|
|
no_output_timeout: 2h
|
2023-08-24 19:21:12 -06:00
|
|
|
- run:
|
|
|
|
name: Build ipq40xx/mikrotik
|
|
|
|
command: make MAINTARGET=ipq40xx SUBTARGET=mikrotik
|
2023-12-06 11:12:11 -07:00
|
|
|
no_output_timeout: 1h
|
2023-08-24 19:21:12 -06:00
|
|
|
- run:
|
|
|
|
name: Build x64/64
|
|
|
|
command: make MAINTARGET=x86 SUBTARGET=64
|
|
|
|
no_output_timeout: 2h
|
2023-12-06 11:12:11 -07:00
|
|
|
- run:
|
|
|
|
name: Build ramips/mt7621
|
2023-12-09 08:20:06 -07:00
|
|
|
command: make MAINTARGET=ramips SUBTARGET=mt7621
|
2023-12-06 11:12:11 -07:00
|
|
|
no_output_timeout: 2h
|
2023-08-24 19:21:12 -06:00
|
|
|
- run:
|
|
|
|
name: Compress build files
|
|
|
|
command: tar -cjf ~/${CIRCLE_BRANCH}_${ARTIFACTS_FILE} -C ${MY_WORKING_DIRECTORY}/${ARTIFACTS_DIR} .
|
|
|
|
- run:
|
|
|
|
name: Deploy Files
|
2024-05-05 00:15:33 -06:00
|
|
|
command: scp -P ${SSH_PORT} -o StrictHostKeyChecking=no ~/${CIRCLE_BRANCH}_${ARTIFACTS_FILE} ${SSH_USER}@${SSH_HOST2}:${TARGET_DIR}
|
2023-08-24 19:21:12 -06:00
|
|
|
|
2018-08-07 07:37:31 -06:00
|
|
|
check2build:
|
2018-08-05 10:23:33 -06:00
|
|
|
machine:
|
2023-04-19 20:20:48 -06:00
|
|
|
image: ubuntu-2004:2023.02.1
|
2018-08-05 10:23:33 -06:00
|
|
|
steps:
|
|
|
|
- run:
|
|
|
|
name: Retrieve last build info and check
|
2024-05-05 00:15:33 -06:00
|
|
|
command: ssh -p ${SSH_PORT} ${SSH_USER}@${SSH_HOST2} "sh -c ' ~/needs2build.sh ${CIRCLE_PROJECT_USERNAME} ${CIRCLE_PROJECT_REPONAME} ${CIRCLE_BRANCH} ${CIRCLE_SHA1}'"
|
2021-11-23 08:24:22 -07:00
|
|
|
- run:
|
|
|
|
name: Check2build failure (build not needed)
|
|
|
|
when: on_fail
|
|
|
|
command: circleci-agent step halt
|
2023-04-18 11:15:51 -06:00
|
|
|
|
2018-08-05 10:23:33 -06:00
|
|
|
save_build_info:
|
2023-04-19 20:20:48 -06:00
|
|
|
machine:
|
|
|
|
image: ubuntu-2004:2023.02.1
|
|
|
|
steps:
|
|
|
|
- run:
|
|
|
|
name: Save last build info
|
2024-05-05 00:15:33 -06:00
|
|
|
command: ssh -p ${SSH_PORT} ${SSH_USER}@${SSH_HOST2} "sh -c ' echo ${CIRCLE_SHA1} > ~/build_info/${CIRCLE_PROJECT_USERNAME}_${CIRCLE_PROJECT_REPONAME}_${CIRCLE_BRANCH}'"
|
2018-08-05 10:23:33 -06:00
|
|
|
|
2018-07-11 21:50:28 -06:00
|
|
|
process_artifacts_nightly:
|
|
|
|
machine:
|
2023-04-19 20:20:48 -06:00
|
|
|
image: ubuntu-2004:2023.02.1
|
2018-07-11 21:50:28 -06:00
|
|
|
steps:
|
2018-07-09 08:03:44 -06:00
|
|
|
- run:
|
2018-07-09 13:50:17 -06:00
|
|
|
name: Untar Files
|
2024-05-05 00:15:33 -06:00
|
|
|
command: ssh -p ${SSH_PORT} ${SSH_USER}@${SSH_HOST2} "sh -c 'tar -xjf ${TARGET_DIR}/${CIRCLE_BRANCH}_${ARTIFACTS_FILE} -C ${TARGET_DIR}'"
|
2018-07-09 13:50:17 -06:00
|
|
|
- run:
|
|
|
|
name: Empty nightly dir
|
2024-05-05 00:15:33 -06:00
|
|
|
command: ssh -p ${SSH_PORT} ${SSH_USER}@${SSH_HOST2} "sh -c 'rm -rf ${NIGHTLY_DIR}'"
|
2018-07-14 22:47:51 -06:00
|
|
|
- run:
|
|
|
|
name: Create nightly dir
|
2024-05-05 00:15:33 -06:00
|
|
|
command: ssh -p ${SSH_PORT} ${SSH_USER}@${SSH_HOST2} "sh -c 'mkdir -p ${NIGHTLY_DIR}'"
|
2018-07-09 13:50:17 -06:00
|
|
|
- run:
|
|
|
|
name: Move targets
|
2024-05-05 00:15:33 -06:00
|
|
|
command: ssh -p ${SSH_PORT} ${SSH_USER}@${SSH_HOST2} "sh -c 'mv ${TARGET_DIR}/targets ${NIGHTLY_DIR}'"
|
2018-07-09 13:50:17 -06:00
|
|
|
- run:
|
|
|
|
name: Move packages
|
2024-05-05 00:15:33 -06:00
|
|
|
command: ssh -p ${SSH_PORT} ${SSH_USER}@${SSH_HOST2} "sh -c 'mv ${TARGET_DIR}/packages ${NIGHTLY_DIR}'"
|
2018-07-11 21:50:28 -06:00
|
|
|
|
2023-08-25 06:31:00 -06:00
|
|
|
process_artifacts_release:
|
|
|
|
machine:
|
|
|
|
image: ubuntu-2004:2023.02.1
|
|
|
|
steps:
|
|
|
|
- run:
|
|
|
|
name: Untar Files
|
2024-05-05 00:15:33 -06:00
|
|
|
command: ssh -p ${SSH_PORT} ${SSH_USER}@${SSH_HOST2} "sh -c 'tar -xjf ${TARGET_DIR}/${CIRCLE_BRANCH}_${ARTIFACTS_FILE} -C ${TARGET_DIR}'"
|
2023-08-25 06:31:00 -06:00
|
|
|
|
2018-07-11 21:50:28 -06:00
|
|
|
changelog_nightly:
|
|
|
|
machine:
|
2023-04-19 20:20:48 -06:00
|
|
|
image: ubuntu-2004:2023.02.1
|
2018-07-11 21:50:28 -06:00
|
|
|
steps:
|
|
|
|
- run:
|
|
|
|
name: Generate changelog.md
|
2024-05-05 00:15:33 -06:00
|
|
|
#command: ssh -p ${SSH_PORT} ${SSH_USER}@${SSH_HOST2} "sh -c 'docker run --rm -v ~/:/usr/local/src/your-app ferrarimarco/github-changelog-generator -u ${CIRCLE_PROJECT_USERNAME} -p ${CIRCLE_PROJECT_REPONAME} -t ${GITHUB_TOKEN}'"
|
2024-05-05 12:47:21 -06:00
|
|
|
command: ssh -p ${SSH_PORT} ${SSH_USER}@${SSH_HOST2} "sh -c 'github_changelog_generator -u ${CIRCLE_PROJECT_USERNAME} -p ${CIRCLE_PROJECT_REPONAME} -t ${GITHUB_TOKEN}'"
|
2018-07-11 21:50:28 -06:00
|
|
|
- run:
|
|
|
|
name: Move changelog
|
2024-05-05 00:15:33 -06:00
|
|
|
command: ssh -p ${SSH_PORT} ${SSH_USER}@${SSH_HOST2} "sh -c 'mv ~/CHANGELOG.md ${NIGHTLY_DIR}'"
|
2018-07-11 21:50:28 -06:00
|
|
|
|
|
|
|
readme_nightly:
|
|
|
|
machine:
|
2023-04-19 20:20:48 -06:00
|
|
|
image: ubuntu-2004:2023.02.1
|
2018-07-11 21:50:28 -06:00
|
|
|
steps:
|
|
|
|
- run:
|
|
|
|
name: Fetch README.md
|
2024-05-05 00:15:33 -06:00
|
|
|
command: ssh -p ${SSH_PORT} ${SSH_USER}@${SSH_HOST2} "sh -c 'wget https://raw.githubusercontent.com/${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}/${CIRCLE_BRANCH}/README.md'"
|
2018-07-11 21:50:28 -06:00
|
|
|
- run:
|
|
|
|
name: Move README.md
|
2024-05-05 00:15:33 -06:00
|
|
|
command: ssh -p ${SSH_PORT} ${SSH_USER}@${SSH_HOST2} "sh -c 'mv ~/README.md ${NIGHTLY_DIR}/readme.md'"
|
2022-12-28 11:22:57 -07:00
|
|
|
- run:
|
|
|
|
name: Fetch SUPPORTED_DEVICES.md
|
2024-05-05 00:15:33 -06:00
|
|
|
command: ssh -p ${SSH_PORT} ${SSH_USER}@${SSH_HOST2} "sh -c 'wget https://raw.githubusercontent.com/${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}/${CIRCLE_BRANCH}/SUPPORTED_DEVICES.md'"
|
2022-12-28 11:22:57 -07:00
|
|
|
- run:
|
|
|
|
name: Move SUPPORTED_DEVICES.md
|
2024-05-05 00:15:33 -06:00
|
|
|
command: ssh -p ${SSH_PORT} ${SSH_USER}@${SSH_HOST2} "sh -c 'mv ~/SUPPORTED_DEVICES.md ${NIGHTLY_DIR}/SUPPORTED_DEVICES.md'"
|
2022-12-28 11:22:57 -07:00
|
|
|
|
2022-01-19 21:56:35 -07:00
|
|
|
afs_collector:
|
|
|
|
machine:
|
2023-04-19 20:20:48 -06:00
|
|
|
image: ubuntu-2004:2023.02.1
|
2022-01-19 21:56:35 -07:00
|
|
|
steps:
|
|
|
|
- run:
|
|
|
|
name: Run AFS collector
|
2024-05-05 00:15:33 -06:00
|
|
|
command: ssh -p ${SSH_PORT} ${SSH_USER}@${SSH_HOST2} "sh -c '${DOWNLOADS_DOCROOT}/afs/misc/collect.py ${DOWNLOADS_DOCROOT} ${DOWNLOADS_DOCROOT}/afs/www'"
|
2023-12-29 11:51:56 -07:00
|
|
|
|
|
|
|
post_to_slack:
|
|
|
|
machine:
|
|
|
|
image: ubuntu-2004:2023.02.1
|
|
|
|
steps:
|
|
|
|
- run:
|
|
|
|
name: Post to Slack
|
2024-05-05 00:15:33 -06:00
|
|
|
command: ssh -p ${SSH_PORT} ${SSH_USER}@${SSH_HOST2} "./post-nightly.sh $(printf '%(%Y%m%d)T')-$(echo ${CIRCLE_SHA1} | cut -c '-7')"
|
2022-01-19 21:56:35 -07:00
|
|
|
|
2023-05-01 16:52:13 -06:00
|
|
|
no_action:
|
|
|
|
machine:
|
|
|
|
image: ubuntu-2004:2023.02.1
|
|
|
|
steps:
|
|
|
|
- run: echo "No action needed"
|
|
|
|
|
2018-07-11 21:50:28 -06:00
|
|
|
######################################
|
|
|
|
# Workflows
|
|
|
|
######################################
|
|
|
|
workflows:
|
2023-05-01 16:52:13 -06:00
|
|
|
no_action_default:
|
|
|
|
when:
|
|
|
|
equal: [ no_action, << pipeline.parameters.action >> ]
|
|
|
|
jobs:
|
|
|
|
- no_action
|
|
|
|
|
2023-05-01 16:39:23 -06:00
|
|
|
nightly_build:
|
|
|
|
when:
|
|
|
|
equal: [ nightly_build, << pipeline.parameters.action >> ]
|
2018-07-11 21:50:28 -06:00
|
|
|
jobs:
|
2018-08-07 07:37:31 -06:00
|
|
|
- check2build
|
2018-08-05 10:23:33 -06:00
|
|
|
- build:
|
|
|
|
requires:
|
2018-08-07 07:37:31 -06:00
|
|
|
- check2build
|
2018-07-11 21:50:28 -06:00
|
|
|
- process_artifacts_nightly:
|
|
|
|
requires:
|
|
|
|
- build
|
|
|
|
- readme_nightly:
|
|
|
|
requires:
|
2018-07-13 09:22:59 -06:00
|
|
|
- process_artifacts_nightly
|
2018-07-11 21:50:28 -06:00
|
|
|
- changelog_nightly:
|
|
|
|
requires:
|
2018-07-13 09:22:59 -06:00
|
|
|
- process_artifacts_nightly
|
2022-01-19 21:56:35 -07:00
|
|
|
- afs_collector:
|
|
|
|
requires:
|
|
|
|
- process_artifacts_nightly
|
2023-05-01 16:39:23 -06:00
|
|
|
- save_build_info:
|
|
|
|
requires:
|
|
|
|
- process_artifacts_nightly
|
2023-12-29 11:51:56 -07:00
|
|
|
- post_to_slack:
|
|
|
|
requires:
|
|
|
|
- afs_collector
|
2023-05-01 16:39:23 -06:00
|
|
|
|
|
|
|
manual_build:
|
|
|
|
when:
|
|
|
|
equal: [ manual_build, << pipeline.parameters.action >> ]
|
|
|
|
jobs:
|
|
|
|
- build
|
|
|
|
- process_artifacts_nightly:
|
|
|
|
requires:
|
|
|
|
- build
|
|
|
|
- readme_nightly:
|
|
|
|
requires:
|
|
|
|
- process_artifacts_nightly
|
|
|
|
- changelog_nightly:
|
|
|
|
requires:
|
|
|
|
- process_artifacts_nightly
|
|
|
|
- afs_collector:
|
|
|
|
requires:
|
|
|
|
- process_artifacts_nightly
|
2023-04-18 11:15:51 -06:00
|
|
|
- save_build_info:
|
|
|
|
requires:
|
|
|
|
- process_artifacts_nightly
|
2023-08-24 19:21:12 -06:00
|
|
|
|
|
|
|
release_build:
|
|
|
|
when:
|
|
|
|
equal: [ release_build, << pipeline.parameters.action >> ]
|
|
|
|
jobs:
|
|
|
|
- build_release
|
2023-08-25 20:01:32 -06:00
|
|
|
- process_artifacts_release:
|
2023-08-25 06:31:00 -06:00
|
|
|
requires:
|
2023-12-04 09:39:25 -07:00
|
|
|
- build_release
|
2023-08-25 06:31:00 -06:00
|
|
|
- readme_nightly:
|
|
|
|
requires:
|
|
|
|
- process_artifacts_release
|
|
|
|
- changelog_nightly:
|
|
|
|
requires:
|
|
|
|
- process_artifacts_release
|
2024-04-02 17:29:50 -06:00
|
|
|
- afs_collector:
|
|
|
|
requires:
|
|
|
|
- process_artifacts_release
|
2023-08-24 19:21:12 -06:00
|
|
|
- save_build_info:
|
|
|
|
requires:
|
2023-08-25 06:31:00 -06:00
|
|
|
- process_artifacts_release
|
|
|
|
|
2023-12-04 12:48:58 -07:00
|
|
|
afs_collector_workflow:
|
|
|
|
when:
|
|
|
|
equal: [ afs_collector, << pipeline.parameters.action >> ]
|
|
|
|
jobs:
|
|
|
|
- afs_collector
|
|
|
|
|