Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[release-5.27] Fix the branch we use for determining a git-validation starting point #2084

Merged
merged 1 commit into from
Aug 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#### Global variables used for all tasks
####
# Name of the ultimate destination branch for this CI run
DEST_BRANCH: "release-5.26"
DEST_BRANCH: "release-5.27"
# CI container image tag (c/skopeo branch name)
SKOPEO_CI_TAG: "release-1.13"
# Use GO module mirror (reason unknown, travis did it this way)
Expand Down Expand Up @@ -78,7 +78,7 @@
script: make cross


test_task:

Check warning on line 81 in .cirrus.yml

View check run for this annotation

Cirrus CI / Build Parsing Results

.cirrus.yml#L81

task "Test" depends on task "validate", but their only_if conditions are different

Check warning on line 81 in .cirrus.yml

View check run for this annotation

Cirrus CI / Build Parsing Results

.cirrus.yml#L81

task "Test w/ opengpg" depends on task "validate", but their only_if conditions are different

Check warning on line 81 in .cirrus.yml

View check run for this annotation

Cirrus CI / Build Parsing Results

.cirrus.yml#L81

task "Test" depends on task "validate", but their only_if conditions are different

Check warning on line 81 in .cirrus.yml

View check run for this annotation

Cirrus CI / Build Parsing Results

.cirrus.yml#L81

task "Test w/ opengpg" depends on task "validate", but their only_if conditions are different
alias: test
depends_on:
- validate
Expand All @@ -99,7 +99,7 @@
##### repository's `.cirrus.yml`. Changes made here should be fully merged
##### prior to being manually duplicated and maintained in containers/skopeo.
#####
test_skopeo_task:

Check warning on line 102 in .cirrus.yml

View check run for this annotation

Cirrus CI / Build Parsing Results

.cirrus.yml#L102

task "Skopeo Test" depends on task "validate", but their only_if conditions are different

Check warning on line 102 in .cirrus.yml

View check run for this annotation

Cirrus CI / Build Parsing Results

.cirrus.yml#L102

task "Skopeo Test w/ opengpg" depends on task "validate", but their only_if conditions are different

Check warning on line 102 in .cirrus.yml

View check run for this annotation

Cirrus CI / Build Parsing Results

.cirrus.yml#L102

task "Skopeo Test" depends on task "validate", but their only_if conditions are different

Check warning on line 102 in .cirrus.yml

View check run for this annotation

Cirrus CI / Build Parsing Results

.cirrus.yml#L102

task "Skopeo Test w/ opengpg" depends on task "validate", but their only_if conditions are different
alias: test_skopeo
only_if: *not_docs
depends_on:
Expand Down Expand Up @@ -161,7 +161,7 @@
# Status aggregator for all tests. This task simply ensures a defined
# set of tasks all passed, and allows confirming that based on the status
# of this task.
success_task:

Check warning on line 164 in .cirrus.yml

View check run for this annotation

Cirrus CI / Build Parsing Results

.cirrus.yml#L164

task "Total Success" depends on task "validate", but their only_if conditions are different

Check warning on line 164 in .cirrus.yml

View check run for this annotation

Cirrus CI / Build Parsing Results

.cirrus.yml#L164

task "Total Success" depends on task "cross", but their only_if conditions are different

Check warning on line 164 in .cirrus.yml

View check run for this annotation

Cirrus CI / Build Parsing Results

.cirrus.yml#L164

task "Total Success" depends on task "Test", but their only_if conditions are different

Check warning on line 164 in .cirrus.yml

View check run for this annotation

Cirrus CI / Build Parsing Results

.cirrus.yml#L164

task "Total Success" depends on task "Test w/ opengpg", but their only_if conditions are different

Check warning on line 164 in .cirrus.yml

View check run for this annotation

Cirrus CI / Build Parsing Results

.cirrus.yml#L164

task "Total Success" depends on task "Skopeo Test", but their only_if conditions are different

Check warning on line 164 in .cirrus.yml

View check run for this annotation

Cirrus CI / Build Parsing Results

.cirrus.yml#L164

task "Total Success" depends on task "Skopeo Test w/ opengpg", but their only_if conditions are different

Check warning on line 164 in .cirrus.yml

View check run for this annotation

Cirrus CI / Build Parsing Results

.cirrus.yml#L164

task "Total Success" depends on task "validate", but their only_if conditions are different

Check warning on line 164 in .cirrus.yml

View check run for this annotation

Cirrus CI / Build Parsing Results

.cirrus.yml#L164

task "Total Success" depends on task "cross", but their only_if conditions are different

Check warning on line 164 in .cirrus.yml

View check run for this annotation

Cirrus CI / Build Parsing Results

.cirrus.yml#L164

task "Total Success" depends on task "Test", but their only_if conditions are different

Check warning on line 164 in .cirrus.yml

View check run for this annotation

Cirrus CI / Build Parsing Results

.cirrus.yml#L164

task "Total Success" depends on task "Test w/ opengpg", but their only_if conditions are different

Check warning on line 164 in .cirrus.yml

View check run for this annotation

Cirrus CI / Build Parsing Results

.cirrus.yml#L164

task "Total Success" depends on task "Skopeo Test", but their only_if conditions are different

Check warning on line 164 in .cirrus.yml

View check run for this annotation

Cirrus CI / Build Parsing Results

.cirrus.yml#L164

task "Total Success" depends on task "Skopeo Test w/ opengpg", but their only_if conditions are different
name: "Total Success"
alias: success
# N/B: ALL tasks must be listed here, minus their '_task' suffix.
Expand Down