Skip to content

Commit

Permalink
[CI] Add rust version 1.74 & 1.75
Browse files Browse the repository at this point in the history
Signed-off-by: csh <[email protected]>
  • Loading branch information
L-jasmine committed Feb 29, 2024
1 parent 94f17fe commit a1b62de
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-build-release-lib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-22.04, ubuntu-20.04]
rust: [1.73, 1.72, 1.71]
rust: [1.75, 1.74, 1.73, 1.72, 1.71]
container:
image: wasmedge/wasmedge:ubuntu-build-clang

Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
rust: [1.73, 1.72, 1.71]
rust: [1.75, 1.74, 1.73, 1.72, 1.71]
container:
image: fedora:latest

Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
strategy:
matrix:
os: [macos-12, macos-13]
rust: [1.73, 1.72, 1.71]
rust: [1.75, 1.74, 1.73, 1.72, 1.71]

steps:
- name: Checkout sources
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-22.04, ubuntu-20.04]
rust: [1.73, 1.72, 1.71]
rust: [1.75, 1.74, 1.73, 1.72, 1.71]
container:
image: wasmedge/wasmedge:ubuntu-build-clang

Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
rust: [1.73, 1.72, 1.71]
rust: [1.75, 1.74, 1.73, 1.72, 1.71]
container:
image: fedora:latest

Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
strategy:
matrix:
os: [macos-12, macos-13]
rust: [1.73, 1.72, 1.71]
rust: [1.75, 1.74, 1.73, 1.72, 1.71]

steps:
- name: Checkout sources
Expand Down Expand Up @@ -228,7 +228,7 @@ jobs:
runs-on: windows-2022
strategy:
matrix:
rust: [1.73, 1.72, 1.71]
rust: [1.75, 1.74, 1.73, 1.72, 1.71]
env:
WASMEDGE_DIR: ${{ github.workspace }}\WasmEdge
WASMEDGE_BUILD_DIR: ${{ github.workspace }}\WasmEdge\build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust-static-lib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-22.04]
rust: [1.73, 1.72, 1.71]
rust: [1.75, 1.74, 1.73, 1.72, 1.71]
container:
image: wasmedge/wasmedge:ubuntu-build-clang

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/standalone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
rust: [1.73, 1.72, 1.71]
rust: [1.75, 1.74, 1.73, 1.72, 1.71]

steps:
- name: Checkout WasmEdge Rust SDK
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
rust: [1.73, 1.72, 1.71]
rust: [1.75, 1.74, 1.73, 1.72, 1.71]

steps:
- name: Checkout WasmEdge Rust SDK
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
strategy:
matrix:
os: [macos-12, macos-13]
rust: [1.73, 1.72, 1.71]
rust: [1.75, 1.74, 1.73, 1.72, 1.71]

steps:
- name: Checkout sources
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
rust: [1.73, 1.72, 1.71]
rust: [1.75, 1.74, 1.73, 1.72, 1.71]
container:
image: fedora:latest

Expand Down
1 change: 0 additions & 1 deletion src/types.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
//! Defines the general types.

use wasmedge_sys::WasmValue;
use wasmedge_types;

/// Defines runtime values that a WebAssembly module can either consume or produce.
#[derive(Debug, Clone)]
Expand Down

0 comments on commit a1b62de

Please sign in to comment.