Skip to content

Commit

Permalink
Merge pull request #819 from mpilgrem/haskell-stack-example
Browse files Browse the repository at this point in the history
Adapt existing Haskell Stack example for Windows
  • Loading branch information
Sampark Sharma authored and GitHub committed Jun 23, 2022
2 parents a0efc56 + d25c51b commit afc669e
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,8 @@ We cache the elements of the Cabal store separately, as the entirety of `~/.caba

## Haskell - Stack

### Linux or macOS

```yaml
- uses: actions/cache@v3
name: Cache ~/.stack
Expand All @@ -240,6 +242,27 @@ We cache the elements of the Cabal store separately, as the entirety of `~/.caba
${{ runner.os }}-stack-work-
```

### Windows

```yaml
- uses: actions/cache@v3
name: Cache %APPDATA%\stack %LOCALAPPDATA%\Programs\stack
with:
path: |
~\AppData\Roaming\stack
~\AppData\Local\Programs\stack
key: ${{ runner.os }}-stack-global-${{ hashFiles('stack.yaml') }}-${{ hashFiles('package.yaml') }}
restore-keys: |
${{ runner.os }}-stack-global-
- uses: actions/cache@v3
name: Cache .stack-work
with:
path: .stack-work
key: ${{ runner.os }}-stack-work-${{ hashFiles('stack.yaml') }}-${{ hashFiles('package.yaml') }}-${{ hashFiles('**/*.hs') }}
restore-keys: |
${{ runner.os }}-stack-work-
```

## Java - Gradle

>Note: Ensure no Gradle daemons are running anymore when your workflow completes. Creating the cache package might fail due to locks being held by Gradle. Refer to the [Gradle Daemon documentation](https://docs.gradle.org/current/userguide/gradle_daemon.html) on how to disable or stop the Gradle Daemons.
Expand Down

0 comments on commit afc669e

Please sign in to comment.