Skip to content

Commit

Permalink
ci: fix basic
Browse files Browse the repository at this point in the history
bhelx committed Sep 13, 2023
1 parent 14ed425 commit 18be17f
Showing 3 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# This file is for zig-specific build artifacts.
# If you have OS-specific or editor-specific files to ignore,
# such as *.swp or .DS_Store, put those in your global
# ~/.gitignore and put this in your ~/.gitconfig:
#
# [core]
# excludesfile = ~/.gitignore
#
# Cheers!
# -andrewrk

zig-cache/
zig-out/
/release/
/debug/
/build/
/build-*/
/docgen_tmp/
2 changes: 1 addition & 1 deletion examples/basic.zig
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ pub fn main() !void {
const allocator = gpa.allocator();
_ = sdk.setLogFile("extism.log", .Debug);

const wasmfile_manifest = manifest.WasmFile{ .path = "../wasm/code-functions.wasm" };
const wasmfile_manifest = manifest.WasmFile{ .path = "wasm/code-functions.wasm" };
const man = .{ .wasm = &[_]manifest.Wasm{.{ .wasm_file = wasmfile_manifest }} };
var f = Function.init(
"hello_world",
Binary file added wasm/code-functions.wasm
Binary file not shown.

0 comments on commit 18be17f

Please sign in to comment.