Skip to content

Commit

Permalink
blah
Browse files Browse the repository at this point in the history
  • Loading branch information
giacomocavalieri committed Mar 4, 2025
1 parent ef48ba5 commit 3a79c90
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,11 @@ jobs:
echo "ok: Architecture match"
if: ${{ matrix.run-integration-tests }}

- name: debug
run: |
which escript
echo $PATH
- name: Run tests
uses: clechasseur/rs-cargo@v3
with:
Expand Down
2 changes: 2 additions & 0 deletions compiler-cli/src/beam_compiler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,8 @@ impl BeamCompiler {
let escript_source = std::include_str!("../templates/gleam@@compile.erl");
io.write(&escript_path, escript_source)?;

let _ = dbg!(std::env::var("PATH"));

tracing::trace!(escript_path=?escript_path, "spawn_beam_compiler");

let mut process = std::process::Command::new("escript")
Expand Down

0 comments on commit 3a79c90

Please sign in to comment.