Skip to content

Commit

Permalink
ci: trying to debug windows
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasjm committed Jul 21, 2024
1 parent 69b1588 commit 477cf85
Showing 1 changed file with 5 additions and 95 deletions.
100 changes: 5 additions & 95 deletions .github/workflows/sandwich.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
os: [windows-latest]
ghc:
# - "8.6.5"
# - "8.8.4"
Expand All @@ -34,12 +34,6 @@ jobs:
steps:
- uses: actions/checkout@v2

- uses: cachix/install-nix-action@v27
if: runner.os != 'Windows'
with:
# release-24.05
nix_path: nixpkgs=https://github.com/NixOS/nixpkgs/archive/74435c9234c751e6786c5f3fd34ff6b0f0c13bd1.tar.gz

- uses: haskell/actions/setup@v2
id: setup-haskell-cabal
name: Setup Haskell
Expand All @@ -57,15 +51,13 @@ jobs:
path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }}
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }}

- name: Install dependencies (macOS)
if: runner.os == 'macOS'
run: |
brew update
brew install libpq
- name: Install dependencies (Windows)
if: runner.os == 'Windows'
run: |
pwd
ls -lh "C:\Program Files\PostgreSQL"
ls -lh "C:\Program Files\PostgreSQL\14"
ls -lh "C:\Program Files\PostgreSQL\14\bin"
echo "PGBIN: $PGBIN"
echo "$PGBIN" >> $GITHUB_PATH
Expand All @@ -89,85 +81,3 @@ jobs:
with:
path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }}
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }}

stack:
name: stack / ghc ${{ matrix.ghc }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- ghc: "9.2.8"
yaml: "stack-9.2.8.yaml"
- ghc: "9.4.8"
yaml: "stack-9.4.8.yaml"
- ghc: "9.6.5"
yaml: "stack.yaml"
- ghc: "9.8.1"
yaml: "stack-9.8.1.yaml"

steps:
- uses: actions/checkout@v3

- uses: cachix/install-nix-action@v27
with:
# release-24.05
nix_path: nixpkgs=https://github.com/NixOS/nixpkgs/archive/74435c9234c751e6786c5f3fd34ff6b0f0c13bd1.tar.gz

- uses: haskell/actions/setup@v2
name: Setup Haskell Stack
with:
ghc-version: ${{ matrix.ghc }}
enable-stack: true
stack-version: "latest"

- uses: actions/cache/restore@v4
name: Cache restore ~/.stack
id: cache-restore
with:
path: ~/.stack
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ matrix.yaml }}-stack

- name: apt
run: |
sudo apt-get update
sudo apt-get install -y libx11-dev libxext-dev libxinerama-dev libxrandr-dev libxss-dev
- name: Build
run: |
stack build --stack-yaml ${{matrix.yaml}} --system-ghc --test --bench --no-run-tests --no-run-benchmarks
- name: Test (sandwich)
run: |
stack test sandwich --stack-yaml ${{matrix.yaml}} --system-ghc
- name: Test (sandwich-contexts)
run: |
echo "NIX_PATH: $NIX_PATH"
stack test sandwich-contexts --stack-yaml ${{matrix.yaml}} --system-ghc --ta --debug
- name: Test (sandwich-contexts-docker)
run: |
stack test sandwich-contexts-docker --stack-yaml ${{matrix.yaml}} --system-ghc
- name: Test (sandwich-contexts-minio)
run: |
stack test sandwich-contexts-minio --stack-yaml ${{matrix.yaml}} --system-ghc
- name: Test (sandwich-hedgehog)
run: |
stack test sandwich-hedgehog --stack-yaml ${{matrix.yaml}} --system-ghc
- name: Test (sandwich-quickcheck)
run: |
stack test sandwich-quickcheck --stack-yaml ${{matrix.yaml}} --system-ghc
- name: Test (sandwich-webdriver)
run: |
stack test sandwich-webdriver --stack-yaml ${{matrix.yaml}} --system-ghc
- uses: actions/cache/save@v4
if: always() && steps.cache-restore.outputs.cache-hit != 'true'
with:
path: ~/.stack
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ matrix.yaml }}-stack

0 comments on commit 477cf85

Please sign in to comment.