Skip to content

Commit

Permalink
Merge pull request #32 from oasisprotocol/kostko/feature/prepare-11.0…
Browse files Browse the repository at this point in the history
….0-testnet

Bump Oasis SDK to v0.7.4 and prepare release 11.0.0-testnet
  • Loading branch information
kostko committed Oct 12, 2023
2 parents b3b23f8 + e1763fd commit 1410693
Show file tree
Hide file tree
Showing 13 changed files with 960 additions and 871 deletions.
4 changes: 2 additions & 2 deletions .cargo/audit.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[advisories]
ignore = [
"RUSTSEC-2020-0071", # Remove once upstream dependencies are updated.
"RUSTSEC-2020-0159", # Remove once upstream dependencies are updated.
"RUSTSEC-2020-0071", # Old version of `time` crate is used by a lot of deps.
"RUSTSEC-2022-0093", # Remove once we can update to ed25519-dalek to v2.
]
6 changes: 2 additions & 4 deletions .github/workflows/ci-audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,5 @@ jobs:
name: audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v4
- run: cargo audit
19 changes: 7 additions & 12 deletions .github/workflows/ci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,21 +25,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
components: rustfmt, clippy
run: rustup show

- name: Install protoc
run: sudo apt install -y protobuf-compiler

- name: Clippy check
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features --locked -- -D warnings -D clippy::dbg_macro
run: cargo clippy --all-features --locked -- -D warnings -D clippy::dbg_macro

- name: Formatting check
uses: actions-rs/cargo@v1
with:
command: fmt
args: -- --check
run: cargo fmt -- --check
2 changes: 1 addition & 1 deletion .github/workflows/ci-reproducibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Build runtime, 1.
id: build-1
Expand Down
14 changes: 6 additions & 8 deletions .github/workflows/ci-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
components: rustfmt # rustfmt is required for macros tests.
run: rustup show

- name: Install protoc
run: sudo apt install -y protobuf-compiler

- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --release
run: cargo build --release --locked
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Go 1.18
uses: actions/setup-go@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.18.x"
go-version: "1.20.x"

- name: Build tagged release, elf, debug
id: build-debug-elf
Expand Down
61 changes: 0 additions & 61 deletions .rustfmt.toml

This file was deleted.

Loading

0 comments on commit 1410693

Please sign in to comment.