Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
evan-schott committed Apr 3, 2024
2 parents 997b905 + e7ddc52 commit abd5235
Show file tree
Hide file tree
Showing 744 changed files with 13,623 additions and 9,111 deletions.
14 changes: 7 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ commands:
jobs:
check-style:
docker:
- image: cimg/rust:1.74
- image: cimg/rust:1.76
resource_class: xlarge
steps:
- checkout
Expand All @@ -66,7 +66,7 @@ jobs:

clippy:
docker:
- image: cimg/rust:1.74
- image: cimg/rust:1.76
resource_class: xlarge
steps:
- checkout
Expand All @@ -83,7 +83,7 @@ jobs:

leo-executable:
docker:
- image: cimg/rust:1.74
- image: cimg/rust:1.76
resource_class: xlarge
steps:
- checkout
Expand All @@ -102,7 +102,7 @@ jobs:

leo-new:
docker:
- image: cimg/rust:1.74
- image: cimg/rust:1.76
resource_class: xlarge
steps:
- attach_workspace:
Expand All @@ -115,7 +115,7 @@ jobs:
leo-clean:
docker:
- image: cimg/rust:1.74
- image: cimg/rust:1.76
resource_class: xlarge
steps:
- attach_workspace:
Expand All @@ -128,7 +128,7 @@ jobs:
leo-example:
docker:
- image: cimg/rust:1.74
- image: cimg/rust:1.76
resource_class: xlarge
steps:
- attach_workspace:
Expand All @@ -141,7 +141,7 @@ jobs:
test-examples:
docker:
- image: cimg/rust:1.74
- image: cimg/rust:1.76
resource_class: xlarge
steps:
- attach_workspace:
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ jobs:
RUSTC_WRAPPER: sccache
SCCACHE_CACHE_SIZE: 2G
SCCACHE_DIR: /Users/runner/Library/Caches/Mozilla.sccache
# SCCACHE_RECACHE: 1 # Uncomment this to clear cache, then comment it back out
steps:
- name: Xcode Select
uses: maxim-lobanov/setup-xcode@v1
Expand Down Expand Up @@ -148,8 +149,8 @@ jobs:
- name: Test
run: |
SDKROOT=$(xcrun -sdk macosx11.1 --show-sdk-path) \
MACOSX_DEPLOYMENT_TARGET=$(xcrun -sdk macosx11.1 --show-sdk-platform-version) \
SDKROOT=$(xcrun -sdk macosx --show-sdk-path) \
MACOSX_DEPLOYMENT_TARGET=$(xcrun -sdk macosx --show-sdk-platform-version) \
cargo test --all
- name: Print sccache stats
Expand Down Expand Up @@ -183,6 +184,7 @@ jobs:
RUSTC_WRAPPER: sccache
SCCACHE_CACHE_SIZE: 2G
SCCACHE_DIR: /home/runner/.cache/sccache
SCCACHE_RECACHE: 1 # Uncomment this to clear cache, then comment it back out
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down Expand Up @@ -334,4 +336,4 @@ jobs:
run: sccache --show-stats

- name: Stop sccache server
run: sccache --stop-server || true
run: sccache --stop-server || true
9 changes: 5 additions & 4 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Testnet3 Crates Docs
name: Mainnet Crates Docs
on:
push:
branches:
- testnet3
- mainnet

jobs:
build-crates-docs:
Expand All @@ -12,6 +12,7 @@ jobs:
RUSTC_WRAPPER: sccache
SCCACHE_CACHE_SIZE: 2G
SCCACHE_DIR: /home/runner/.cache/sccache
# SCCACHE_RECACHE: 1 # Uncomment this to clear cache, then comment it back out
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -21,7 +22,7 @@ jobs:
- name: Install sccache
env:
LINK: https://github.com/mozilla/sccache/releases/download
SCCACHE_VERSION: v0.2.15
SCCACHE_VERSION: v0.7.6
run: |
SCCACHE_FILE=sccache-$SCCACHE_VERSION-x86_64-unknown-linux-musl
mkdir -p $HOME/.local/bin
Expand Down Expand Up @@ -66,4 +67,4 @@ jobs:
run: sccache --show-stats

- name: Stop sccache server
run: sccache --stop-server || true
run: sccache --stop-server || true
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,8 @@ jobs:

- name: Build Leo
run: |
SDKROOT=$(xcrun -sdk macosx11.1 --show-sdk-path) \
MACOSX_DEPLOYMENT_TARGET=$(xcrun -sdk macosx11.1 --show-sdk-platform-version) \
SDKROOT=$(xcrun -sdk macosx --show-sdk-path) \
MACOSX_DEPLOYMENT_TARGET=$(xcrun -sdk macosx --show-sdk-platform-version) \
cargo build -p leo-lang --release --target=aarch64-apple-darwin --features noconfig && strip target/aarch64-apple-darwin/release/leo
env:
CARGO_NET_GIT_FETCH_WITH_CLI: true
Expand Down
2 changes: 1 addition & 1 deletion .resources/release-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.10.0
v1.11.0
169 changes: 168 additions & 1 deletion CONTRIBUTORS.md

Large diffs are not rendered by default.

Loading

0 comments on commit abd5235

Please sign in to comment.