From 2d217e29e7511d93e1832dfa331b45132cf59b46 Mon Sep 17 00:00:00 2001 From: Alfredo Garcia Date: Mon, 18 Dec 2023 18:07:40 -0300 Subject: [PATCH] rename worflows to fix readme badges (#8116) --- .cargo/config.toml | 2 +- .github/PULL_REQUEST_TEMPLATE/release-checklist.md | 2 +- .github/workflows/docs-deploy-firebase.yml | 2 +- README.md | 2 +- book/src/dev/continuous-delivery.md | 2 +- book/src/dev/continuous-integration.md | 6 +++--- book/src/user/docker.md | 2 +- zebra-utils/README.md | 2 +- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index 76bf55492d5..1368e393fe4 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -83,7 +83,7 @@ rustflags = [ [build] rustdocflags = [ # The -A and -W settings must be the same as the `RUSTDOCFLAGS` in: - # https://github.com/ZcashFoundation/zebra/blob/main/.github/workflows/docs.yml#L61 + # https://github.com/ZcashFoundation/zebra/blob/main/.github/workflows/docs-deploy-firebase.yml#L68 # Links in public docs can point to private items. "-Arustdoc::private_intra_doc_links", diff --git a/.github/PULL_REQUEST_TEMPLATE/release-checklist.md b/.github/PULL_REQUEST_TEMPLATE/release-checklist.md index adf1395161f..079672db631 100644 --- a/.github/PULL_REQUEST_TEMPLATE/release-checklist.md +++ b/.github/PULL_REQUEST_TEMPLATE/release-checklist.md @@ -9,7 +9,7 @@ assignees: '' # Prepare for the Release -- [ ] Make sure there has been [at least one successful full sync test](https://github.com/ZcashFoundation/zebra/actions/workflows/continous-integration-docker.yml?query=event%3Aschedule) since the last state change, or start a manual full sync. +- [ ] Make sure there has been [at least one successful full sync test](https://github.com/ZcashFoundation/zebra/actions/workflows/ci-integration-tests-gcp.yml?query=event%3Aschedule) since the last state change, or start a manual full sync. - [ ] Make sure the PRs with the new checkpoint hashes and missed dependencies are already merged. (See the release ticket checklist for details) diff --git a/.github/workflows/docs-deploy-firebase.yml b/.github/workflows/docs-deploy-firebase.yml index 21930a1b93b..6d592b22bf4 100644 --- a/.github/workflows/docs-deploy-firebase.yml +++ b/.github/workflows/docs-deploy-firebase.yml @@ -52,7 +52,7 @@ on: - '.cargo/config.toml' - '**/clippy.toml' # workflow definitions - - '.github/workflows/docs.yml' + - '.github/workflows/docs-deploy-firebase.yml' env: RUST_LOG: ${{ vars.RUST_LOG }} diff --git a/README.md b/README.md index 177df3fc3c5..1b2490164f6 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ --- -[![CI Docker](https://github.com/ZcashFoundation/zebra/actions/workflows/continous-integration-docker.yml/badge.svg)](https://github.com/ZcashFoundation/zebra/actions/workflows/continous-integration-docker.yml) [![CI OSes](https://github.com/ZcashFoundation/zebra/actions/workflows/continous-integration-os.yml/badge.svg)](https://github.com/ZcashFoundation/zebra/actions/workflows/continous-integration-os.yml) [![Continuous Delivery](https://github.com/ZcashFoundation/zebra/actions/workflows/continous-delivery.yml/badge.svg)](https://github.com/ZcashFoundation/zebra/actions/workflows/continous-delivery.yml) [![codecov](https://codecov.io/gh/ZcashFoundation/zebra/branch/main/graph/badge.svg)](https://codecov.io/gh/ZcashFoundation/zebra) [![Build docs](https://github.com/ZcashFoundation/zebra/actions/workflows/docs.yml/badge.svg)](https://github.com/ZcashFoundation/zebra/actions/workflows/docs.yml) +[![CI Docker](https://github.com/ZcashFoundation/zebra/actions/workflows/ci-integration-tests-gcp.yml/badge.svg)](https://github.com/ZcashFoundation/zebra/actions/workflows/ci-integration-tests-gcp.yml) [![CI OSes](https://github.com/ZcashFoundation/zebra/actions/workflows/ci-unit-tests-os.yml/badge.svg)](https://github.com/ZcashFoundation/zebra/actions/workflows/ci-unit-tests-os.yml) [![Continuous Delivery](https://github.com/ZcashFoundation/zebra/actions/workflows/cd-deploy-nodes-gcp.yml/badge.svg)](https://github.com/ZcashFoundation/zebra/actions/workflows/cd-deploy-nodes-gcp.yml) [![codecov](https://codecov.io/gh/ZcashFoundation/zebra/branch/main/graph/badge.svg)](https://codecov.io/gh/ZcashFoundation/zebra) [![Build docs](https://github.com/ZcashFoundation/zebra/actions/workflows/docs-deploy-firebase.yml/badge.svg)](https://github.com/ZcashFoundation/zebra/actions/workflows/docs-deploy-firebase.yml) ![License](https://img.shields.io/badge/license-MIT%2FApache--2.0-blue.svg) ## Contents diff --git a/book/src/dev/continuous-delivery.md b/book/src/dev/continuous-delivery.md index e3592a145b5..30c3ed7e86b 100644 --- a/book/src/dev/continuous-delivery.md +++ b/book/src/dev/continuous-delivery.md @@ -25,4 +25,4 @@ A single instance can also be deployed, on an on-demand basis, if required, when long-lived instance, with specific changes, is needed to be tested in the Mainnet with the same infrastructure used for CI & CD. -Further validations of the actual process can be done on our continuous delivery [workflow file](https://github.com/ZcashFoundation/zebra/blob/main/.github/workflows/continous-delivery.yml). +Further validations of the actual process can be done on our continuous delivery [workflow file](https://github.com/ZcashFoundation/zebra/blob/main/.github/workflows/cd-deploy-nodes-gcp.yml). diff --git a/book/src/dev/continuous-integration.md b/book/src/dev/continuous-integration.md index a9771f6f61a..d59ad00aeee 100644 --- a/book/src/dev/continuous-integration.md +++ b/book/src/dev/continuous-integration.md @@ -4,7 +4,7 @@ Zebra has extensive continuous integration tests for node syncing and `lightwalletd` integration. -On every PR change, Zebra runs [these Docker tests](https://github.com/ZcashFoundation/zebra/blob/main/.github/workflows/continous-integration-docker.yml): +On every PR change, Zebra runs [these Docker tests](https://github.com/ZcashFoundation/zebra/blob/main/.github/workflows/ci-integration-tests-gcp.yml): - Zebra update syncs from a cached state Google Cloud tip image - lightwalletd full syncs from a cached state Google Cloud tip image - lightwalletd update syncs from a cached state Google Cloud tip image @@ -21,7 +21,7 @@ which are shared by all tests. Tests prefer the latest image generated from the But if a state from the same commit is not available, tests will use the latest image from any branch and commit, as long as the state version is the same. -Zebra also does [a smaller set of tests](https://github.com/ZcashFoundation/zebra/blob/main/.github/workflows/continous-integration-os.yml) on tier 2 platforms using GitHub actions runners. +Zebra also does [a smaller set of tests](https://github.com/ZcashFoundation/zebra/blob/main/.github/workflows/ci-unit-tests-os.yml) on tier 2 platforms using GitHub actions runners. ## Automated Merges @@ -240,7 +240,7 @@ To fix duplicate dependencies, follow these steps until the duplicate dependenci If the Docker cached state disks are full, increase the disk sizes in: - [deploy-gcp-tests.yml](https://github.com/ZcashFoundation/zebra/blob/main/.github/workflows/deploy-gcp-tests.yml) -- [continous-delivery.yml](https://github.com/ZcashFoundation/zebra/blob/main/.github/workflows/continous-delivery.yml) +- [cd-deploy-nodes-gcp.yml](https://github.com/ZcashFoundation/zebra/blob/main/.github/workflows/cd-deploy-nodes-gcp.yml) If the GitHub Actions disks are full, follow these steps until the errors are fixed: diff --git a/book/src/user/docker.md b/book/src/user/docker.md index 00228e1c158..839819356ed 100644 --- a/book/src/user/docker.md +++ b/book/src/user/docker.md @@ -115,6 +115,6 @@ endpoint_addr = "127.0.0.1:9999" ## Registries -The images built by the Zebra team are all publicly hosted. Old image versions meant to be used by our [CI pipeline](https://github.com/ZcashFoundation/zebra/blob/main/.github/workflows/continous-integration-docker.yml) (`zebrad-test`, `lighwalletd`) might be deleted on a scheduled basis. +The images built by the Zebra team are all publicly hosted. Old image versions meant to be used by our [CI pipeline](https://github.com/ZcashFoundation/zebra/blob/main/.github/workflows/ci-integration-tests-gcp.yml) (`zebrad-test`, `lighwalletd`) might be deleted on a scheduled basis. We use [Docker Hub](https://hub.docker.com/r/zfnd/zebra) for end-user images and [Google Artifact Registry](https://console.cloud.google.com/artifacts/docker/zfnd-dev-zebra/us/zebra) to build external tools and test images. diff --git a/zebra-utils/README.md b/zebra-utils/README.md index b38d4c4346f..a3e84b32c71 100644 --- a/zebra-utils/README.md +++ b/zebra-utils/README.md @@ -20,7 +20,7 @@ Zebra's GitHub workflows automatically generate checkpoints after every `main` b These checkpoints can be copied into the `main-checkpoints.txt` and `test-checkpoints.txt` files. To find the latest checkpoints on the `main` branch: -1. Find the [latest completed `CI Docker` workflow run on `main`](https://github.com/ZcashFoundation/zebra/actions/workflows/continous-integration-docker.yml?query=branch%3Amain). +1. Find the [latest completed `CI Docker` workflow run on `main`](https://github.com/ZcashFoundation/zebra/actions/workflows/ci-integration-tests-gcp.yml?query=branch%3Amain). Due to GitHub UI issues, some runs will show as waiting, cancelled, or failed, but the checkpoints have still been generated. 2. Go to the `Result of checkpoints-mainnet` step in the