Skip to content

try customizing the bash #36

try customizing the bash

try customizing the bash #36

name: ghc-lib-ghc-master-ghc-9.10.1
on:
push:
jobs:
runhaskell:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu, macos, windows]
steps:
- uses: actions/checkout@v4
- name: Install build tools (macOS)
run: brew install automake
if: matrix.os == 'macos'
- name: Install msys2 (windows)
shell: bash
run: |-
set -x
cd /c
curl -L https://github.com/commercialhaskell/stackage-content/releases/download/msys2-20230526/msys2-20230526-x86_64.tar.xz -o msys2-20230526-x86_64.tar.xz
tar xvf ./msys2-20230526-x86_64.tar.xz
if: matrix.os == 'windows'
# - name: Install ghcup
# shell: bash
# run: |-
# curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | \
# BOOTSTRAP_HASKELL_NONINTERACTIVE=1 \
# BOOTSTRAP_HASKELL_GHC_VERSION=9.10.1 \
# BOOTSTRAP_HASKELL_CABAL_VERSION=latest \
# BOOTSTRAP_HASKELL_INSTALL_NO_STACK=1 \
# BOOTSTRAP_HASKELL_INSTALL_NO_STACK_HOOK=1 \
# BOOTSTRAP_HASKELL_ADJUST_BASHRC=N sh
# - name: Setup cabal (windows)
# shell: bash
# run: |-
# PATH=/c/cabal/bin:/c/.ghcup/ghc-9.10.1/bin:/c/.ghcup/bin:$PATH
# export PATH
# cabal install alex happy
# cabal --store-dir="c:\\cabal\\store" --lib --force-reinstalls --package-env=- install extra-1.7.16 optparse-applicative-0.18.1.0
# if: matrix.os == 'windows'
# - name: Setup cabal(unix)
# shell: bash
# run: |-
# PATH="$HOME/.cabal/bin":"$HOME/.ghcup/ghc/9.10.1/bin":"$HOME/.ghcup/bin":"$PATH"
# export PATH
# cabal install alex happy
# cabal --store-dir=$HOME/.cabal/store --lib --force-reinstalls --package-env=- install extra-1.7.16 optparse-applicative-0.18.1.0
# if: matrix.os == 'ubuntu' || matrix.os == 'macos'

Check failure on line 50 in .github/workflows/ghc-lib-ghc-master-ghc-9.10.1.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ghc-lib-ghc-master-ghc-9.10.1.yml

Invalid workflow file

You have an error in your yaml syntax on line 50
- name: Run CI.hs (windows)
shell: C:\msys64\usr\bin\bash.exe --login --norc -eo pipefail'{0}'
# shell: C:\msys64\usr\bin\bash --noprofile --no-rc -e -o pipefail '{0}'
run: |-
echo "Hello world!"
pacman -S autoconf automake-wrapper make patch python tar mintty --noconfirm
# PATH="c:/cabal/bin":"c:/ghcup/ghc/9.10.1/bin":"c:/ghcup/bin":"c:/msys64/usr/bin":"c:/mingw64/bin:"c:/program files/git/bin":$PATH
# export PATH
# runghc --ghc-arg=-clear-package-db --ghc-arg=-global-package-db --ghc-arg=-user-package-db --ghc-arg=-package-db --ghc-arg=/c/cabal/store/$(ls /c/cabal/store)/package.db CI.hs --ghc-flavor ghc-master
if: matrix.os == 'windows'
# - name: Run CI.hs (unix)
# shell: bash
# run: |-
# PATH="$HOME/.cabal/bin":"$HOME/.ghcup/ghc/9.10.1/bin":"$HOME/.ghcup/bin":"$PATH"
# export PATH
# runghc --ghc-arg=-clear-package-db --ghc-arg=-global-package-db --ghc-arg=-user-package-db --ghc-arg=-package-db --ghc-arg=$HOME/.cabal/store/$(ls $HOME/.cabal/store)/package.db CI.hs --ghc-flavor ghc-master
# if: matrix.os == 'ubuntu' || matrix.os == 'macos'