diff options
| author | John J. Camilleri <john@digitalgrammars.com> | 2020-11-16 22:54:19 +0100 |
|---|---|---|
| committer | John J. Camilleri <john@digitalgrammars.com> | 2020-11-16 22:54:19 +0100 |
| commit | ce9caa27267da33c302404f04d718e6dc34c53f5 (patch) | |
| tree | 0565280c21da138f55505f92b8d0308f808845f5 /.github | |
| parent | b4ccca8c1800498c789ab405c5233f628779965a (diff) | |
Install alex and happy
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build-macos-package.yml | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/.github/workflows/build-macos-package.yml b/.github/workflows/build-macos-package.yml index 091beb150..d55c134a9 100644 --- a/.github/workflows/build-macos-package.yml +++ b/.github/workflows/build-macos-package.yml @@ -17,9 +17,9 @@ jobs: steps: - uses: actions/checkout@v2 - - uses: actions/setup-haskell@v1 + - name: Setup Haskell + uses: actions/setup-haskell@v1 id: setup-haskell-cabal - name: Setup Haskell with: ghc-version: ${{ matrix.ghc }} cabal-version: ${{ matrix.cabal }} @@ -32,10 +32,7 @@ jobs: run: | brew install \ automake - - - name: Checkout RGL - run: | - git clone --depth 1 https://github.com/GrammaticalFramework/gf-rgl.git ../gf-rgl + cabal v1-install alex happy - name: Build macOS package run: | @@ -46,6 +43,7 @@ jobs: mkdir macos/dist cp ../gf_*.pkg macos/dist/ - - uses: actions/upload-artifact@v2 + - name: Upload artifact + uses: actions/upload-artifact@v2 with: path: macos/dist |
