Skip to content

Commit

Permalink
start building out github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
shayne-fletcher committed Jan 27, 2024
1 parent fa89fe3 commit 809181d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/hlint-from-scratch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,14 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu, macos, windows]
os: [ubuntu, macos]
steps:
- uses: actions/checkout@v4
- run: stack upgrade
- run: brew install automake
if: matrix.os == 'macos'
- run: cabal update
- run: cabal install apply-refact
- run: |-
echo "GHCLIB_AZURE='1'" >> $GITHUB_ENV
echo "repo_dir=$(mktemp -d)" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion hlint-from-scratch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ else
fi
sha_ghc_lib_parser=$(shasum -a 256 "$repo_dir"/ghc-lib/ghc-lib-parser-"$version".tar.gz | awk '{ print $1 }')

# temp disable while i focus on minimal set of github actions
# temp disabled while i focus on minimal set of github actions
if false; then
if [ -z "$GHC_FLAVOR" ]; then
# If the above worked out, update CI.hs.
Expand Down

0 comments on commit 809181d

Please sign in to comment.