Skip to content

Commit 8bc24a4

Browse files
committed
check
1 parent 025d459 commit 8bc24a4

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

.github/workflows/build_example.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ jobs:
3636
run: cargo binstall --no-confirm --continue-on-failure wasm-bindgen-cli wasm-opt trunk
3737
- if: ${{ inputs.api == 'webgl2' }}
3838
name: build example
39-
run: just build_wasm_example ${{ inputs.example }}
39+
run: just build_wasm_example ${{ inputs.example }} false
4040
- if: ${{ inputs.api == 'webgpu' }}
4141
name: build example
42-
run: just build_wasm_example ${{ inputs.example }} bevy/webgpu
42+
run: just build_wasm_example ${{ inputs.example }} false bevy/webgpu
4343
- name: upload dist
4444
uses: actions/upload-artifact@v4
4545
with:

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
KAAJ_HAALKA_COMMIT := "a638cec554b2c1c2e06b46ad49bf36f395ccf653"
1+
KAAJ_HAALKA_COMMIT := "6b570340a68bb5128514e7887b5aa3571a763f59"
22

33
fetch_kaaj_justfile:
44
curl https://raw.githubusercontent.com/databasedav/haalka/{{ KAAJ_HAALKA_COMMIT }}/kaaj/justfile > kaaj.just

nickel/Nickel-pkg.ncl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
minimal_nickel_version = "1.12.2",
66
description = "github actions ci generation for jonmo",
77
dependencies = {
8-
kaaj = 'Git { url = "https://github.com/databasedav/haalka", path = "kaaj", ref = 'Commit "a638cec554b2c1c2e06b46ad49bf36f395ccf653" },
8+
kaaj = 'Git {
9+
url = "https://github.com/databasedav/haalka",
10+
path = "kaaj",
11+
ref = 'Commit "6b570340a68bb5128514e7887b5aa3571a763f59"
12+
},
913
}
1014
} | std.package.Manifest

nickel/main.ncl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ let { build_example, ci, cleanup_pr_previews, examples_on_main, pr_previews, rel
22
let REPO = "https://github.com/databasedav/jonmo" in
33
let GITHUB_PAGES_URL = "https://databasedav.github.io/jonmo" in
44
{
5-
build_example_ = build_example "bevy/webgpu",
5+
build_example_ = build_example false "bevy/webgpu",
66
ci_ = ci,
77
cleanup_pr_previews_ = cleanup_pr_previews REPO,
88
pr_previews_ = pr_previews REPO GITHUB_PAGES_URL,

0 commit comments

Comments
 (0)