Skip to content

Commit

Permalink
Merge pull request #190 from moxin-org/dev
Browse files Browse the repository at this point in the history
Main update 8/2
  • Loading branch information
jmbejar authored Aug 2, 2024
2 parents 97b08b0 + 9441877 commit 7615f83
Show file tree
Hide file tree
Showing 25 changed files with 1,642 additions and 737 deletions.
32 changes: 23 additions & 9 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@ on:
push:
branches:
- 'main'
- 'dev'
paths-ignore:
- "**/*.md"
pull_request:
branches:
- 'main'
- 'dev'
paths-ignore:
- "**/*.md"

Expand All @@ -23,7 +25,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-22.04, ubuntu-20.04]
rust: [1.79, 1.78, 1.77]
rust: [1.79]
env:
LD_LIBRARY_PATH: ~\.wasmedge\lib

Expand All @@ -45,17 +47,21 @@ jobs:
with:
toolchain: ${{ matrix.rust }}

- name: Test Build
- name: Build
run: |
cargo build --release
cargo build
- name: Build before-packaging-command
run: |
cargo build --manifest-path packaging/before-packaging-command/Cargo.toml
build_macos:
name: MacOS
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-14, macos-13]
rust: [1.79, 1.78, 1.77]
rust: [1.79]

steps:
- name: Checkout sources
Expand All @@ -71,16 +77,20 @@ jobs:
with:
toolchain: ${{ matrix.rust }}

- name: Test Build
- name: Build
run: |
cargo build --release
cargo build
- name: Build before-packaging-command
run: |
cargo build --manifest-path packaging/before-packaging-command/Cargo.toml
build_windows:
name: Windows
runs-on: windows-2022
strategy:
matrix:
rust: [1.79, 1.78, 1.77]
rust: [1.79]
env:
WASMEDGE_DIR: ${{ github.workspace }}\WasmEdge-0.14.0-Windows
steps:
Expand Down Expand Up @@ -108,6 +118,10 @@ jobs:
with:
toolchain: ${{ matrix.rust }}

- name: Test Build
- name: Build
run: |
cargo build
- name: Build before-packaging-command
run: |
cargo build
cargo build --manifest-path packaging/before-packaging-command/Cargo.toml
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/target
target/
preferences.json
data.*
.vscode
Expand Down
Loading

0 comments on commit 7615f83

Please sign in to comment.