Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

CI Workflows

This document has not yet covered all workflows.

Build and Release

WasmEdge (core)

OS Arch toolchain docker_tag test release
MacOS 13 (darwin 22) x86_64 clang o o
MacOS 14 (darwin 23) arm64 clang o o
manylinux_2_28 x86_64 gcc manylinux_2_28_x86_64 o o
manylinux_2_28 aarch64 gcc manylinux_2_28_aarch64 o o
Ubuntu 24.04 x86_64 clang ubuntu-24.04-build-clang o
Ubuntu 24.04 x86_64 gcc ubuntu-24.04-build-gcc o
Ubuntu 22.04 x86_64 gcc ubuntu-22.04-build-gcc coverage
Ubuntu 20.04 x86_64 clang ubuntu-20.04-build-clang o o
Ubuntu 20.04 aarch64 clang ubuntu-20.04-build-clang-aarch64 o o

WasmEdge plugins

OS Arch toolchain docker_tag test release
MacOS 13 (darwin 22) x86_64 clang o o
MacOS 14 (darwin 23) arm64 clang o o
manylinux_2_28 x86_64 gcc manylinux_2_28_x86_64-plugins-deps o o
manylinux_2_28 aarch64 gcc manylinux_2_28_aarch64-plugins-deps o o
Ubuntu 24.04 x86_64 clang ubuntu-24.04-build-clang-plugins-deps o
Ubuntu 24.04 x86_64 gcc ubuntu-24.04-build-gcc-plugins-deps o
Ubuntu 20.04 x86_64 clang ubuntu-20.04-build-clang-plugins-deps o o
Ubuntu 20.04 x86_64 gcc ubuntu-20.04-build-gcc-cuda11 - -
Ubuntu 20.04 x86_64 gcc ubuntu-20.04-build-gcc-cuda12 - -

Plugins that is built with CUDA enabled:

  • wasmedge_stablediffusion

Workflow for build.yml

flowchart LR
    %% _ is the starting point of everything
    _(( ))-->lint(lint)
    lint-->|pass|build(build)
    lint-->|fail|reject(unable to merge)
    build-.->source(create source tarball)
    build-.->oss("build on all OS")
    build-.->ext("build plugins on all OS")
Loading

Calling Structure for Reusable Workflows

flowchart LR
    subgraph "build-extensions.yml"
        b_("build-extensions.yml")-->|reusable-call-linter.yml|l0(("lint pass"))
        l0-->b_ext("reusable-build-extensions.yml")
        b_ext-->b_ext_m("reusable-build-extensions-on-macos.yml")
        b_ext-->b_ext_l("reusable-build-extensions-on-linux.yml")
    end
    b("build.yml")-->|reusable-call-linter.yml|l1(("lint pass"))
    l1-->oss("<ul>
      <li>reusable-build-on-alpine-static.yml</li>
      <li>reusable-build-on-android.yml</li>
      <li>reusable-build-on-debian-static.yml</li>
      <li>reusable-build-on-macos.yml</li>
      <li>reusable-build-on-manylinux.yml</li>
      <li>reusable-build-on-ubuntu.yml</li>
      <li>reusable-build-on-windows.yml</li>
      <li>reusable-build-on-windows-msvc.yml</li>
    </ul>")
    subgraph "release.yml"
        rel("release.yml")-->|reusable-call-linter.yml|l2(("lint pass"))
        l2-->oss
        l2-->b_ext
        l2-->src
    end
    l1-->oss_extra("<ul>
      <li>reusable-build-on-debian.yml</li>
      <li>reusable-build-on-fedora.yml</li>
    </ul>")
    l1-->src("reusable-create-source-tarball.yml")
    classDef nostroke stroke:none;
    class l0,l1,l2 nostroke
    classDef relcls stroke:olive;
    class rel,oss,src,b_ext relcls
    classDef bcls stroke:orange;
    class b,oss_extra bcls
Loading