mirror of
https://github.com/certbot/certbot.git
synced 2026-08-01 16:19:13 +02:00
remove test and package stage to improve github actions ui
This commit is contained in:
@@ -11,12 +11,27 @@ permissions:
|
|||||||
contents: read
|
contents: read
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test_and_package_stage:
|
# These four jobs could be grouped in a separate workflow, but the github actions UI
|
||||||
name: Test and package
|
# is much nicer if they are instead listed explicitly here.
|
||||||
uses: "./.github/workflows/test_and_package_stage.yml"
|
standard_tests_jobs:
|
||||||
|
name: Standard tests
|
||||||
|
uses: "./.github/workflows/standard_tests_jobs.yml"
|
||||||
|
extended_tests_jobs:
|
||||||
|
name: Extended tests
|
||||||
|
uses: "./.github/workflows/extended_tests_jobs.yml"
|
||||||
|
secrets: inherit
|
||||||
|
docker_packaging_jobs:
|
||||||
|
name: Docker packaging
|
||||||
|
uses: "./.github/workflows/docker_packaging_jobs.yml"
|
||||||
with:
|
with:
|
||||||
# We don't publish our Docker images in this pipeline, but when building them
|
# We don't publish our Docker images in this pipeline, but when building them
|
||||||
# for testing, let's use the nightly tag.
|
# for testing, let's use the nightly tag.
|
||||||
dockerTag: nightly
|
dockerTag: nightly
|
||||||
|
secrets: inherit
|
||||||
|
snap_packaging_jobs:
|
||||||
|
name: Snap packaging
|
||||||
|
uses: "./.github/workflows/snap_packaging_jobs.yml"
|
||||||
|
with:
|
||||||
snapBuildTimeout: 5400
|
snapBuildTimeout: 5400
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
|
|||||||
@@ -6,13 +6,25 @@ on:
|
|||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test_and_package_stage:
|
# The first four jobs could be grouped in a separate workflow, but the github actions UI
|
||||||
name: Test and Package
|
# is much nicer if they are instead listed explicitly here.
|
||||||
permissions:
|
standard_tests_jobs:
|
||||||
contents: read
|
name: Standard tests
|
||||||
uses: "./.github/workflows/test_and_package_stage.yml"
|
uses: "./.github/workflows/standard_tests_jobs.yml"
|
||||||
|
extended_tests_jobs:
|
||||||
|
name: Extended tests
|
||||||
|
uses: "./.github/workflows/extended_tests_jobs.yml"
|
||||||
|
secrets: inherit
|
||||||
|
docker_packaging_jobs:
|
||||||
|
name: Docker packaging
|
||||||
|
uses: "./.github/workflows/docker_packaging_jobs.yml"
|
||||||
with:
|
with:
|
||||||
dockerTag: nightly
|
dockerTag: nightly
|
||||||
|
secrets: inherit
|
||||||
|
snap_packaging_jobs:
|
||||||
|
name: Snap packaging
|
||||||
|
uses: "./.github/workflows/snap_packaging_jobs.yml"
|
||||||
|
with:
|
||||||
snapBuildTimeout: 19800
|
snapBuildTimeout: 19800
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
changelog_stage:
|
changelog_stage:
|
||||||
|
|||||||
@@ -1,33 +0,0 @@
|
|||||||
name: Test and package
|
|
||||||
on:
|
|
||||||
workflow_call:
|
|
||||||
inputs:
|
|
||||||
dockerTag:
|
|
||||||
description: 'docker tag to push to'
|
|
||||||
type: string
|
|
||||||
snapBuildTimeout:
|
|
||||||
description: 'timeout for snap builds'
|
|
||||||
type: number
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
# standard_tests_jobs:
|
|
||||||
# name: Standard tests
|
|
||||||
# uses: "./.github/workflows/standard_tests_jobs.yml"
|
|
||||||
# extended_tests_jobs:
|
|
||||||
# name: Extended tests
|
|
||||||
# uses: "./.github/workflows/extended_tests_jobs.yml"
|
|
||||||
# secrets: inherit
|
|
||||||
# docker_packaging_jobs:
|
|
||||||
# name: Docker packaging
|
|
||||||
# uses: "./.github/workflows/docker_packaging_jobs.yml"
|
|
||||||
# with:
|
|
||||||
# dockerTag: ${{ inputs.dockerTag }}
|
|
||||||
# secrets: inherit
|
|
||||||
snap_packaging_jobs:
|
|
||||||
name: Snap packaging
|
|
||||||
uses: "./.github/workflows/snap_packaging_jobs.yml"
|
|
||||||
with:
|
|
||||||
snapBuildTimeout: ${{ inputs.snapBuildTimeout }}
|
|
||||||
secrets: inherit
|
|
||||||
Reference in New Issue
Block a user