-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
140 changed files
with
1,990 additions
and
2,724 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,6 +39,7 @@ name: Checks | |
# so you're not wasting money unless several cores are sitting idle for long. | ||
|
||
on: | ||
workflow_dispatch: | ||
merge_group: | ||
types: ["checks_requested"] | ||
push: | ||
|
@@ -114,7 +115,7 @@ jobs: | |
- name: Toolchain | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: nightly | ||
toolchain: nightly-2024-07-27 | ||
override: true | ||
- name: Rust Cache | ||
uses: Swatinem/rust-cache@v2 | ||
|
@@ -131,8 +132,8 @@ jobs: | |
RUSTFLAGS: -A warnings | ||
uses: aig787/cargo-udeps-action@v1 | ||
with: | ||
version: 'latest' | ||
args: '--workspace --all-features --all-targets' | ||
version: "latest" | ||
args: "--workspace --all-features --all-targets" | ||
|
||
deny: | ||
runs-on: ubuntu-latest | ||
|
@@ -147,20 +148,6 @@ jobs: | |
coverage: | ||
runs-on: ubicloud-standard-16 | ||
if: github.event.pull_request.draft == false | ||
services: | ||
postgres: | ||
image: postgres:latest | ||
env: | ||
POSTGRES_USER: postgres | ||
POSTGRES_PASSWORD: postgres | ||
POSTGRES_DB: postgres | ||
ports: | ||
- 5432:5432 | ||
options: >- | ||
--health-cmd pg_isready | ||
--health-interval 10s | ||
--health-timeout 5s | ||
--health-retries 5 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/[email protected] | ||
|
@@ -341,20 +328,6 @@ jobs: | |
runs-on: ubicloud-standard-16 | ||
timeout-minutes: 60 | ||
if: github.event.pull_request.draft == false | ||
services: | ||
postgres: | ||
image: postgres:latest | ||
env: | ||
POSTGRES_USER: postgres | ||
POSTGRES_PASSWORD: postgres | ||
POSTGRES_DB: postgres | ||
ports: | ||
- 5432:5432 | ||
options: >- | ||
--health-cmd pg_isready | ||
--health-interval 10s | ||
--health-timeout 5s | ||
--health-retries 5 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: rui314/setup-mold@v1 | ||
|
@@ -393,7 +366,6 @@ jobs: | |
BONSAI_API_URL: ${{ secrets.BONSAI_API_URL }} # TODO: remove this once we don't use the client on tests | ||
BONSAI_API_KEY: ${{ secrets.BONSAI_API_KEY }} # TODO: remove this once we don't use the client on tests | ||
|
||
|
||
system-contracts: | ||
strategy: | ||
fail-fast: true | ||
|
@@ -443,9 +415,8 @@ jobs: | |
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.x' | ||
python-version: "3.x" | ||
|
||
- name: Run check_genesis.sh | ||
run: ./.github/scripts/check_genesis.sh | ||
shell: bash | ||
|
Oops, something went wrong.