Skip to content

Commit

Permalink
fix: missing wizer in tests.yaml workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
fuxiaohei committed Aug 10, 2024
1 parent bdb34ea commit 7bb2e33
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: |
bash ./scripts/land-server-deps.sh
mkdir -p /opt/bin
cp -R wizer-v6.0.0-x86_64-linux /opt/bin/wizer
cp -R wizer-v6.0.0-x86_64-linux/wizer ./target/release/wizer
- name: Build binaries
run: |
cargo build -p land-cli --release
Expand Down
1 change: 1 addition & 0 deletions lib/wasm-gen/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ fn find_cmd(cmd: &str) -> Result<PathBuf> {
#[cfg(target_os = "windows")]
let file = file.with_extension("exe");

debug!("Try find cmd: {:?}", file);
if file.exists() {
return Ok(file);
}
Expand Down
2 changes: 1 addition & 1 deletion tests/test-js-files.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ CLI=./target/release/land-cli
# iterate tests/js-files/*.js
for file in tests/js-files/*.js; do
echo "Building $file"
$CLI build $file
$CLI build $file --verbose
done

0 comments on commit 7bb2e33

Please sign in to comment.