Skip to content

Commit

Permalink
Run interpreter specs on Windows CI (#15141)
Browse files Browse the repository at this point in the history
  • Loading branch information
HertzDevil authored Nov 5, 2024
1 parent 563d6d2 commit 07038e2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,9 @@ jobs:
- name: Run compiler specs
run: make -f Makefile.win compiler_spec

- name: Run interpreter specs
run: make -f Makefile.win interpreter_spec

- name: Run primitives specs
run: make -f Makefile.win -o .build\crystal.exe primitives_spec # we know the compiler is fresh; do not rebuild it here

Expand Down
2 changes: 1 addition & 1 deletion src/compiler/crystal/interpreter/context.cr
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ class Crystal::Repl::Context
# used in `Crystal::Program#each_dll_path`
private def dll_search_paths
{% if flag?(:msvc) %}
paths = CrystalLibraryPath.paths
paths = CrystalLibraryPath.default_paths

if executable_path = Process.executable_path
paths << File.dirname(executable_path)
Expand Down

0 comments on commit 07038e2

Please sign in to comment.