Skip to content

Commit

Permalink
Merge branch 'main' into sort-buffered-txs
Browse files Browse the repository at this point in the history
  • Loading branch information
IronGauntlets authored Aug 2, 2024
2 parents 632574f + 10ba647 commit 3c4ebb4
Show file tree
Hide file tree
Showing 185 changed files with 28,176 additions and 7,867 deletions.
3 changes: 2 additions & 1 deletion .github/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@ ignore:
- p2p
- adapters/core2p2p
- adapters/p2p2core
- docs
- docs
- "**/*_enumer.go"
18 changes: 18 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "cargo"
directory: "/vm/rust"
schedule:
interval: "weekly"
2 changes: 2 additions & 0 deletions .github/workflow-scripts/verify_deployment.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

set -ux

URL=$1
EXPECTED_VERSION=$2
MAX_ATTEMPTS=30
Expand Down
166 changes: 0 additions & 166 deletions .github/workflows/build-and-deploy.yml

This file was deleted.

8 changes: 4 additions & 4 deletions .github/workflows/build-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,21 @@ jobs:
architecture: amd64
- os: macOS-latest
architecture: amd64
- os: self-hosted
- os: ubuntu-arm64-4-core
architecture: arm64
runs-on: ${{ matrix.os }}

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Get latest tag
id: tag
run: echo "TAG=$(git describe --tags)" >> $GITHUB_ENV

- name: Install dependencies (Ubuntu or self-hosted)
- name: Install dependencies (Linux)
if: runner.os == 'Linux'
run: sudo apt-get update -qq && sudo apt-get install -y upx-ucl build-essential cargo git golang libjemalloc-dev libjemalloc2 -y

Expand All @@ -39,7 +39,7 @@ jobs:
run: brew install upx cargo-c jemalloc

- name: Set up Go
uses: actions/setup-go@v4.1.0
uses: actions/setup-go@v5.0.2
with:
go-version-file: go.mod

Expand Down
Loading

0 comments on commit 3c4ebb4

Please sign in to comment.