Skip to content

Commit

Permalink
Stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
newhoggy committed Nov 20, 2020
1 parent 4d4df00 commit cc349d2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ jobs:
steps:
- uses: actions/checkout@v1

- name: Look at root directory
run: |
ls -al /
- name: Select build directory
run: |
if [ "$OS" == Windows_NT ]; then
Expand Down Expand Up @@ -82,10 +86,6 @@ jobs:
sudo apt-get -y remove --purge software-properties-common
sudo apt-get -y autoremove
- name: Cabal config
run: |
cabal user-config init -a "http-transport: plain-http" -a "store-dir: C:\\SR" -f -v3
- name: Set up temp directory
run: |
echo 'TMPDIR=${{ runner.temp }}' >> $GITHUB_ENV
Expand All @@ -95,7 +95,7 @@ jobs:
- name: cache cabal store
uses: actions/cache@v1
with:
path: C:\SR
path: ${{ steps.setup-haskell.outputs.cabal-store }}
key: cabal-store-8.10.2
# Cache parts of dist-newstyle (C:\dist)
- name: cache buiddir [cache]
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
# Build dependencies
- name: Build dependencies
run: |
cabal --builddir="$CABAL_BUILDDIR" install happy
cabal --builddir="$CABAL_BUILDDIR" install happy --install-method=copy
# Build dependencies
- name: Build dependencies
Expand Down

0 comments on commit cc349d2

Please sign in to comment.