Skip to content

Commit ebaf8b9

Browse files
committed
fix(CI): run 'ridk enable' before building the Ruby extension on windows, to activate the MSYS2 environment, installed by the Ruby installer
1 parent 0843c98 commit ebaf8b9

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,11 @@ jobs:
5353
- name: Setup just
5454
uses: extractions/setup-just@v1
5555
- name: Build extension
56-
run: just build-extension
56+
run: |
57+
if [[ "$RUNNER_OS" == "Windows" ]]; then
58+
ridk enable
59+
fi
60+
just build-extension
5761
- name: Run tests
5862
run: just test
5963

0 commit comments

Comments
 (0)