Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/linux-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
- name: "Install needed dependencies"
run: |
sudo apt-get update
sudo apt-get install -y libgmp-dev llvm-12-tools
sudo apt-get install -y libgmp-dev llvm-15-tools
pip install lit
echo "/usr/lib/llvm-12/bin" >> $GITHUB_PATH
echo "/usr/lib/llvm-15/bin" >> $GITHUB_PATH

- uses: haskell-actions/setup@v2
with:
ghc-version: '9.4.7'
ghc-version: '9.6.7'
enable-stack: true
stack-no-global: true
stack-version: 'latest'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

- uses: haskell-actions/setup@v2
with:
ghc-version: '9.4.7'
ghc-version: '9.6.7'
enable-stack: true
stack-no-global: true
stack-version: 'latest'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

- uses: haskell-actions/setup@v2
with:
ghc-version: '9.4.7'
ghc-version: '9.6.7'
enable-stack: true
stack-no-global: true
stack-version: 'latest'
Expand Down
2 changes: 1 addition & 1 deletion test/functional/builtins.ek
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ fn main = print (42 toString)
// ERROR: hello
>> eprint "hello"
// CHECK: bahencore
>> print "bah" ++ "encore"
>> print ("bah" ++ "encore")
// CHECK: 42
>> print ("42" toInt)
// CHECK: lindo
Expand Down
Loading