Skip to content

Commit cd4f09c

Browse files
committed
[ ci ] Remove hardcoded Stack root on Windows
1 parent cc318c4 commit cd4f09c

File tree

5 files changed

+146
-317
lines changed

5 files changed

+146
-317
lines changed

.github/workflows/test-linux.yaml

Lines changed: 0 additions & 111 deletions
This file was deleted.

.github/workflows/test-mac.yaml

Lines changed: 0 additions & 203 deletions
This file was deleted.

.github/workflows/test-unix.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,16 @@ jobs:
1515
runs-on: ${{ matrix.os }}
1616
strategy:
1717
matrix:
18-
os: [ubuntu-latest, macos-latest]
18+
os: [ubuntu-latest, macos-latest, windows-latest]
1919
fail-fast: false
2020
steps:
2121

2222
- name: 📥 Checkout repository
2323
uses: actions/checkout@v4
2424

25+
- name: 🏗 Install yq
26+
uses: frenck/action-setup-yq@v1
27+
2528
- name: 🔍 Determine stack resolver & GHC
2629
run: |
2730
STACK_RESOLVER=$(yq .resolver stack.yaml)
@@ -215,7 +218,7 @@ jobs:
215218
216219
- name: 🔨 Build and run tests
217220
run: |
218-
221+
219222
stack test --ta --als-path=zip/als
220223
221224
# release (optional)

.github/workflows/test-windows.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name: CI (Windows)
44

55
on:
66
push:
7-
branches: [master, ci-*, ci]
7+
branches: []
88
tags:
99
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
1010
pull_request:

0 commit comments

Comments
 (0)