Skip to content

Commit

Permalink
Merge branch 'main' into fix-full-sync-fail
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Nov 7, 2022
2 parents 26bbf01 + 975d957 commit 07ff18e
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 13 deletions.
1 change: 1 addition & 0 deletions .github/workflows/continous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ jobs:
#
# The image will be commonly named `zebrad:<short-hash | github-ref | semver>`
build:
name: Build CD Docker
uses: ./.github/workflows/build-docker-image.yml
with:
dockerfile_path: ./docker/Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/continous-integration-docker.patch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- run: 'echo "No build required"'

build:
name: Build / Build images
name: Build CI Docker / Build images
runs-on: ubuntu-latest
steps:
- run: 'echo "No build required"'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/continous-integration-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ jobs:
fi
build:
name: Build
name: Build CI Docker
uses: ./.github/workflows/build-docker-image.yml
with:
dockerfile_path: ./docker/Dockerfile
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/continous-integration-os.patch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ on:
jobs:
test:
name: Test ${{ matrix.rust }} on ${{ matrix.os }}${{ matrix.features }}
# We're just doing this job for the name, the platform doesn't matter.
# So we use the platform with the most concurrent instances.
runs-on: ubuntu-latest
strategy:
matrix:
# TODO: Windows was removed for now, see https://github.com/ZcashFoundation/zebra/issues/3801
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/continous-integration-os.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ on:
- '.cargo/config.toml'
- '**/clippy.toml'
# workflow definitions
- '.github/workflows/ci.yml'
- '.github/workflows/continous-integration-os.yml'
pull_request:
paths:
# code and tests
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/lint.patch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ name: Lint

on:
pull_request:
branches:
- 'main'

jobs:
clippy:
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ on:
branches:
- main
pull_request:
branches:
- 'main'

env:
CARGO_INCREMENTAL: 0
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
#
# The image will be named `zebrad:<semver>`
build:
name: Build Release Docker
uses: ./.github/workflows/build-docker-image.yml
with:
dockerfile_path: ./docker/Dockerfile
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/zcash-lightwalletd.patch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ name: zcash-lightwalletd
# run a fake CI job to satisfy the branch protection rules.
on:
pull_request:
branches:
- main
paths-ignore:
- 'zebra-rpc/**'
- 'zebrad/tests/acceptance.rs'
Expand All @@ -16,7 +14,7 @@ on:

jobs:
build:
name: Build images
name: Build lightwalletd Docker
runs-on: ubuntu-latest
steps:
- run: 'echo "No build required"'
4 changes: 1 addition & 3 deletions .github/workflows/zcash-lightwalletd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ on:

# Update the lightwalletd image when each related PR changes
pull_request:
branches:
- main
paths:
# rebuild lightwalletd whenever the related Zebra code changes
# (this code isn't actually compiled in this docker image)
Expand All @@ -50,7 +48,7 @@ env:

jobs:
build:
name: Build images
name: Build lightwalletd Docker
runs-on: ubuntu-latest
permissions:
contents: 'read'
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/zcash-params.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ on:

jobs:
build:
name: Build Zcash Params Docker
uses: ./.github/workflows/build-docker-image.yml
with:
dockerfile_path: ./docker/zcash-params/Dockerfile
Expand Down

0 comments on commit 07ff18e

Please sign in to comment.