mirror of
https://github.com/containers/podman.git
synced 2025-06-08 00:00:51 +08:00
Merge pull request #5387 from edsantiago/try_renaming_long_cirrus_jobs
Rename long cirrus job names
This commit is contained in:
54
.cirrus.yml
54
.cirrus.yml
@ -34,11 +34,16 @@ env:
|
|||||||
####
|
####
|
||||||
#### Cache-image names to test with (double-quotes around names are critical)
|
#### Cache-image names to test with (double-quotes around names are critical)
|
||||||
###
|
###
|
||||||
|
FEDORA_NAME: "fedora-31"
|
||||||
|
PRIOR_FEDORA_NAME: "fedora-30"
|
||||||
|
UBUNTU_NAME: "ubuntu-19"
|
||||||
|
PRIOR_UBUNTU_NAME: "ubuntu-18"
|
||||||
|
|
||||||
_BUILT_IMAGE_SUFFIX: "libpod-5940307564953600"
|
_BUILT_IMAGE_SUFFIX: "libpod-5940307564953600"
|
||||||
FEDORA_CACHE_IMAGE_NAME: "fedora-31-${_BUILT_IMAGE_SUFFIX}"
|
FEDORA_CACHE_IMAGE_NAME: "${FEDORA_NAME}-${_BUILT_IMAGE_SUFFIX}"
|
||||||
PRIOR_FEDORA_CACHE_IMAGE_NAME: "fedora-30-${_BUILT_IMAGE_SUFFIX}"
|
PRIOR_FEDORA_CACHE_IMAGE_NAME: "${PRIOR_FEDORA_NAME}-${_BUILT_IMAGE_SUFFIX}"
|
||||||
UBUNTU_CACHE_IMAGE_NAME: "ubuntu-19-${_BUILT_IMAGE_SUFFIX}"
|
UBUNTU_CACHE_IMAGE_NAME: "${UBUNTU_NAME}-${_BUILT_IMAGE_SUFFIX}"
|
||||||
PRIOR_UBUNTU_CACHE_IMAGE_NAME: "ubuntu-18-${_BUILT_IMAGE_SUFFIX}"
|
PRIOR_UBUNTU_CACHE_IMAGE_NAME: "${PRIOR_UBUNTU_NAME}-${_BUILT_IMAGE_SUFFIX}"
|
||||||
|
|
||||||
####
|
####
|
||||||
#### Variables for composing new cache-images (used in PR testing) from
|
#### Variables for composing new cache-images (used in PR testing) from
|
||||||
@ -370,7 +375,7 @@ image_prune_task:
|
|||||||
|
|
||||||
# This task does the unit and integration testing for every platform
|
# This task does the unit and integration testing for every platform
|
||||||
testing_task:
|
testing_task:
|
||||||
|
alias: "testing"
|
||||||
depends_on:
|
depends_on:
|
||||||
- "gating"
|
- "gating"
|
||||||
- "vendor"
|
- "vendor"
|
||||||
@ -383,12 +388,17 @@ testing_task:
|
|||||||
$CIRRUS_CHANGE_MESSAGE !=~ '.*CI:IMG.*' &&
|
$CIRRUS_CHANGE_MESSAGE !=~ '.*CI:IMG.*' &&
|
||||||
$CIRRUS_CHANGE_MESSAGE !=~ '.*CI:DOCS.*'
|
$CIRRUS_CHANGE_MESSAGE !=~ '.*CI:DOCS.*'
|
||||||
|
|
||||||
gce_instance:
|
|
||||||
matrix:
|
matrix:
|
||||||
|
- name: "test ${FEDORA_NAME}"
|
||||||
|
gce_instance:
|
||||||
image_name: "${FEDORA_CACHE_IMAGE_NAME}"
|
image_name: "${FEDORA_CACHE_IMAGE_NAME}"
|
||||||
|
- name: "test ${PRIOR_FEDORA_NAME}"
|
||||||
|
gce_instance:
|
||||||
image_name: "${PRIOR_FEDORA_CACHE_IMAGE_NAME}"
|
image_name: "${PRIOR_FEDORA_CACHE_IMAGE_NAME}"
|
||||||
# Multiple test failures on Ubuntu 19 - Fixes TBD in future PR
|
# Multiple test failures on Ubuntu 19 - Fixes TBD in future PR
|
||||||
# TODO: image_name: "${UBUNTU_CACHE_IMAGE_NAME}"
|
# TODO: image_name: "${UBUNTU_CACHE_IMAGE_NAME}"
|
||||||
|
- name: "test ${PRIOR_UBUNTU_NAME}"
|
||||||
|
gce_instance:
|
||||||
image_name: "${PRIOR_UBUNTU_CACHE_IMAGE_NAME}"
|
image_name: "${PRIOR_UBUNTU_CACHE_IMAGE_NAME}"
|
||||||
|
|
||||||
timeout_in: 120m
|
timeout_in: 120m
|
||||||
@ -396,7 +406,11 @@ testing_task:
|
|||||||
env:
|
env:
|
||||||
ADD_SECOND_PARTITION: 'true'
|
ADD_SECOND_PARTITION: 'true'
|
||||||
matrix:
|
matrix:
|
||||||
|
- name: remote
|
||||||
|
env:
|
||||||
TEST_REMOTE_CLIENT: 'true'
|
TEST_REMOTE_CLIENT: 'true'
|
||||||
|
- name: local
|
||||||
|
env:
|
||||||
TEST_REMOTE_CLIENT: 'false'
|
TEST_REMOTE_CLIENT: 'false'
|
||||||
|
|
||||||
networking_script: '${CIRRUS_WORKING_DIR}/${SCRIPT_BASE}/networking.sh'
|
networking_script: '${CIRRUS_WORKING_DIR}/${SCRIPT_BASE}/networking.sh'
|
||||||
@ -448,7 +462,11 @@ special_testing_rootless_task:
|
|||||||
ADD_SECOND_PARTITION: 'true'
|
ADD_SECOND_PARTITION: 'true'
|
||||||
SPECIALMODE: 'rootless' # See docs
|
SPECIALMODE: 'rootless' # See docs
|
||||||
matrix:
|
matrix:
|
||||||
|
- name: remote
|
||||||
|
env:
|
||||||
TEST_REMOTE_CLIENT: 'true'
|
TEST_REMOTE_CLIENT: 'true'
|
||||||
|
- name: local
|
||||||
|
env:
|
||||||
TEST_REMOTE_CLIENT: 'false'
|
TEST_REMOTE_CLIENT: 'false'
|
||||||
|
|
||||||
timeout_in: 60m
|
timeout_in: 60m
|
||||||
@ -467,7 +485,7 @@ special_testing_rootless_task:
|
|||||||
|
|
||||||
|
|
||||||
special_testing_in_podman_task:
|
special_testing_in_podman_task:
|
||||||
|
alias: "special_testing_in_podman"
|
||||||
depends_on:
|
depends_on:
|
||||||
- "gating"
|
- "gating"
|
||||||
- "varlink_api"
|
- "varlink_api"
|
||||||
@ -479,11 +497,12 @@ special_testing_in_podman_task:
|
|||||||
$CIRRUS_CHANGE_MESSAGE !=~ '.*CI:IMG.*' &&
|
$CIRRUS_CHANGE_MESSAGE !=~ '.*CI:IMG.*' &&
|
||||||
$CIRRUS_CHANGE_MESSAGE !=~ '.*CI:DOCS.*'
|
$CIRRUS_CHANGE_MESSAGE !=~ '.*CI:DOCS.*'
|
||||||
|
|
||||||
gce_instance:
|
|
||||||
matrix:
|
matrix:
|
||||||
# FIXME: Integration testing currently broken for F31 hosts
|
# FIXME: Integration testing currently broken for F31 hosts
|
||||||
# Error: container_linux.go:345: starting container process caused "process_linux.go:281: applying cgroup configuration for process caused \"mountpoint for cgroup not found\"": OCI runtime error
|
# Error: container_linux.go:345: starting container process caused "process_linux.go:281: applying cgroup configuration for process caused \"mountpoint for cgroup not found\"": OCI runtime error
|
||||||
# image_name: "${FEDORA_CACHE_IMAGE_NAME}"
|
# image_name: "${FEDORA_CACHE_IMAGE_NAME}"
|
||||||
|
- name: "in-podman ${PRIOR_FEDORA_NAME}"
|
||||||
|
gce_instance:
|
||||||
image_name: "${PRIOR_FEDORA_CACHE_IMAGE_NAME}"
|
image_name: "${PRIOR_FEDORA_CACHE_IMAGE_NAME}"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
@ -509,7 +528,7 @@ special_testing_in_podman_task:
|
|||||||
|
|
||||||
|
|
||||||
special_testing_cross_task:
|
special_testing_cross_task:
|
||||||
|
alias: "special_testing_cross"
|
||||||
depends_on:
|
depends_on:
|
||||||
- "gating"
|
- "gating"
|
||||||
- "varlink_api"
|
- "varlink_api"
|
||||||
@ -519,9 +538,12 @@ special_testing_cross_task:
|
|||||||
$CIRRUS_CHANGE_MESSAGE !=~ '.*CI:IMG.*' &&
|
$CIRRUS_CHANGE_MESSAGE !=~ '.*CI:IMG.*' &&
|
||||||
$CIRRUS_CHANGE_MESSAGE !=~ '.*CI:DOCS.*'
|
$CIRRUS_CHANGE_MESSAGE !=~ '.*CI:DOCS.*'
|
||||||
|
|
||||||
env:
|
|
||||||
matrix:
|
matrix:
|
||||||
|
- name: 'cross-platform: windows'
|
||||||
|
env:
|
||||||
CROSS_PLATFORM: 'windows'
|
CROSS_PLATFORM: 'windows'
|
||||||
|
- name: 'cross-platform: darwin'
|
||||||
|
env:
|
||||||
CROSS_PLATFORM: 'darwin'
|
CROSS_PLATFORM: 'darwin'
|
||||||
|
|
||||||
timeout_in: 20m
|
timeout_in: 20m
|
||||||
@ -649,15 +671,19 @@ verify_test_built_images_task:
|
|||||||
env:
|
env:
|
||||||
ADD_SECOND_PARTITION: 'true'
|
ADD_SECOND_PARTITION: 'true'
|
||||||
matrix:
|
matrix:
|
||||||
|
- name: remote
|
||||||
|
env:
|
||||||
TEST_REMOTE_CLIENT: 'true'
|
TEST_REMOTE_CLIENT: 'true'
|
||||||
|
- name: local
|
||||||
|
env:
|
||||||
TEST_REMOTE_CLIENT: 'false'
|
TEST_REMOTE_CLIENT: 'false'
|
||||||
matrix:
|
matrix:
|
||||||
# Required env. var. by check_image_script
|
# Required env. var. by check_image_script
|
||||||
PACKER_BUILDER_NAME: "fedora-30"
|
PACKER_BUILDER_NAME: "${FEDORA_NAME}"
|
||||||
PACKER_BUILDER_NAME: "fedora-31"
|
PACKER_BUILDER_NAME: "${PRIOR_FEDORA_NAME}"
|
||||||
PACKER_BUILDER_NAME: "ubuntu-18"
|
PACKER_BUILDER_NAME: "${PRIOR_UBUNTU_NAME}"
|
||||||
# Multiple test failures on ${UBUNTU_CACHE_IMAGE_NAME}
|
# Multiple test failures on ${UBUNTU_CACHE_IMAGE_NAME}
|
||||||
# PACKER_BUILDER_NAME: "ubuntu-19"
|
# PACKER_BUILDER_NAME: "${UBUNTU_NAME}"
|
||||||
|
|
||||||
networking_script: '${CIRRUS_WORKING_DIR}/${SCRIPT_BASE}/networking.sh'
|
networking_script: '${CIRRUS_WORKING_DIR}/${SCRIPT_BASE}/networking.sh'
|
||||||
installed_packages_script: '$SCRIPT_BASE/logcollector.sh packages'
|
installed_packages_script: '$SCRIPT_BASE/logcollector.sh packages'
|
||||||
|
Reference in New Issue
Block a user