Skip to content

Commit

Permalink
Merge branch 'main' into dependabot_updates
Browse files Browse the repository at this point in the history
  • Loading branch information
leighmcculloch authored Nov 6, 2024
2 parents c1ff1a7 + 2e2673e commit 959fd61
Show file tree
Hide file tree
Showing 234 changed files with 5,376 additions and 14,376 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
pull_request:
merge_group:

concurrency:
group: ${{ github.workflow }}-${{ github.ref_protected == 'true' && github.sha || github.ref }}-{{ github.event_name }}
cancel-in-progress: true

defaults:
run:
shell: bash
Expand Down Expand Up @@ -53,10 +57,10 @@ jobs:
steps:
- uses: actions/checkout@v3
- run: rustup update
- uses: stellar/binaries@v24
- uses: stellar/binaries@v30
with:
name: cargo-semver-checks
version: 0.32.0
version: 0.35.0
- run: cargo semver-checks

build-and-test:
Expand Down Expand Up @@ -109,6 +113,12 @@ jobs:
run: rm -fr **/test_snapshots
- name: Build for wasm
run: cargo-hack hack build --target wasm32-unknown-unknown --profile release
- name: Wasm Size
run: |
cd target/wasm32-unknown-unknown/release/ && \
for i in *.wasm ; do \
ls -l "$i"; \
done
- if: "!matrix.sys.cdylib-cross-compile-workaround"
name: Build for native
run: cargo-hack hack --feature-powerset --exclude-features docs build --target ${{ matrix.sys.target }}
Expand All @@ -133,6 +143,8 @@ jobs:
name: cargo-fuzz
version: 0.11.2
- run: make build-fuzz
- name: Check no diffs exist
run: git add -N . && git diff HEAD --exit-code

docs:
runs-on: ubuntu-latest
Expand All @@ -141,6 +153,8 @@ jobs:
- uses: stellar/actions/rust-cache@main
- run: rustup install nightly
- run: make doc
- name: Check no diffs exist
run: git add -N . && git diff HEAD --exit-code

readme:
runs-on: ubuntu-latest
Expand Down
Loading

0 comments on commit 959fd61

Please sign in to comment.