Skip to content

Commit

Permalink
update of ghc version number in GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
nevrome committed Oct 26, 2023
1 parent d75d92e commit fcfb576
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/Dockerfile.centos
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ RUN yum -y update
RUN yum -y install zlib-devel wget ncurses-devel ncurses-compat-libs make gcc

# Install GHC since stack's local install has issues
RUN wget https://downloads.haskell.org/~ghc/9.2.7/ghc-9.2.7-x86_64-centos7-linux.tar.xz
RUN tar xvf ghc-9.2.7-x86_64-centos7-linux.tar.xz
RUN cd ghc-9.2.7; ./configure; make install
RUN wget https://downloads.haskell.org/~ghc/9.4.7/ghc-9.4.7-x86_64-centos7-linux.tar.xz
RUN tar xvf ghc-9.4.7-x86_64-centos7-linux.tar.xz
RUN cd ghc-9.4.7; ./configure; make install

# install stack
RUN curl -sSL https://get.haskellstack.org/ | sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
stack: ["latest"]
ghc: ["9.2.7"]
ghc: ["9.4.7"]

steps:
# setup and loading cache
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
matrix:
os: [ubuntu-20.04]
cabal: ["3.6"]
ghc: ["9.2.7"]
ghc: ["9.4.7"]

steps:
- name: Check out code
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
matrix:
os: [macOS-latest]
cabal: ["3.6"]
ghc: ["9.2.7"]
ghc: ["9.4.7"]

steps:
- name: Check out code
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
matrix:
os: [windows-latest]
cabal: ["3.6"]
ghc: ["9.2.7"]
ghc: ["9.4.7"]

steps:
- name: Check out code
Expand Down
2 changes: 1 addition & 1 deletion cabal.project
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
packages: ./*.cabal
with-compiler: ghc-9.2.7
with-compiler: ghc-9.4.7
allow-newer: table-layout:base
package pandoc-citeproc
flags: +embed_data_files

0 comments on commit fcfb576

Please sign in to comment.