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

Adds gossippub/mdns to swarm behaviour for peering and topic subscriptions/publishings #31

Merged
merged 3 commits into from
Jan 23, 2023
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions .envrc
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
use_flake

export RUST_LOG=debug,sqlx=warn,atuin_client=warn
export RUST_BACKTRACE=1
4 changes: 0 additions & 4 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ jobs:
- name: Docker Build
uses: docker/build-push-action@v3
with:
build-args: |
RUST_BUILD_IMG=rust:1.65-slim-bullseye
cache-from: type=registry,ref=ghcr.io/${{ github.repository_owner }}/ipvm:latest
cache-to: type=registry,ref=ghcr.io/${{ github.repository_owner }}/ipvm:latest,mode=max
context: .
Expand Down Expand Up @@ -90,8 +88,6 @@ jobs:
- name: Docker Build and Push
uses: docker/build-push-action@v3
with:
build-args: |
RUST_BUILD_IMG=rust:1.65-slim-bullseye
cache-from: type=registry,ref=ghcr.io/${{ github.repository_owner }}/ipvm:latest
cache-to: type=registry,ref=ghcr.io/${{ github.repository_owner }}/ipvm:latest,mode=max
context: .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
if: >
github.ref == 'refs/heads/main' &&
github.repository_owner == 'ipvm-wg' &&
github.event.workflow_run.conclusion == 'success'
github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success'

outputs:
release_created: ${{ steps.release.outputs.release_created }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests_and_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- stable
- nightly
# minimum version
- 1.65
- 1.66
steps:
- name: Install Protoc
uses: arduino/setup-protoc@v1
Expand Down
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ repos:
- id: check-merge-conflict
- id: trailing-whitespace
- id: end-of-file-fixer
exclude: \.txt$
- id: check-yaml
- id: check-json
- id: check-added-large-files
Expand Down
Loading