Skip to content

Commit a0fbe8e

Browse files
committed
[ fix ] CI for Agda-2.6.4.3
2 parents 69fdbc0 + ead83b3 commit a0fbe8e

File tree

6 files changed

+47
-7
lines changed

6 files changed

+47
-7
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
resolver: lts-24.1
2+
compiler: ghc-9.10.2
3+
# Allow a newer minor version of GHC than the snapshot specifies
4+
compiler-check: newer-minor
5+
6+
packages: []
7+
8+
extra-deps:
9+
- Agda-2.6.4.3
10+
- hashable-1.4.7.0@sha256:573f3ab242f75465a0d67ce9d84202650a1606575e6dbd6d31ffcf4767a9a379,6629
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
resolver: lts-24.1
2+
compiler: ghc-9.10.2
3+
# Allow a newer minor version of GHC than the snapshot specifies
4+
compiler-check: newer-minor
5+
6+
packages: []
7+
8+
extra-deps:
9+
- Agda-2.7.0.1
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
resolver: lts-24.1
2+
compiler: ghc-9.10.2
3+
# Allow a newer minor version of GHC than the snapshot specifies
4+
compiler-check: newer-minor
5+
6+
packages: []
7+
8+
extra-deps:
9+
- Agda-2.8.0

.github/workflows/test.yml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,16 @@ jobs:
2323
matrix:
2424
os: [windows-latest, ubuntu-latest, macos-latest]
2525
agda: ["Agda-2.6.4", "Agda-2.7.0", "Agda-2.8.0"]
26+
include:
27+
- agda: "Agda-2.6.4"
28+
agda-version: "Agda-2.6.4.3"
29+
stack-config: ".github/stack/stack-Agda-2.6.4.3.yaml"
30+
- agda: "Agda-2.7.0"
31+
agda-version: "Agda-2.7.0.1"
32+
stack-config: ".github/stack/stack-Agda-2.7.0.1.yaml"
33+
- agda: "Agda-2.8.0"
34+
agda-version: "Agda-2.8.0"
35+
stack-config: ".github/stack/stack-Agda-2.8.0.yaml"
2636
fail-fast: false
2737

2838
# Steps represent a sequence of tasks that will be executed as part of the job
@@ -82,9 +92,9 @@ jobs:
8292
uses: actions/cache/restore@v4
8393
with:
8494
path: ${{ env.DIST }}
85-
key: ${{ env.DIST }}
95+
key: ${{ env.DIST }}-${{ matrix.stack-config }}
8696
restore-keys: |
87-
${{ env.DIST }}
97+
${{ env.DIST }}-${{ matrix.stack-config }}
8898
8999
- name: 💾 Restore VSCode from .vscode-test
90100
id: vscode
@@ -130,8 +140,8 @@ jobs:
130140
- name: ⏬ Install Agda
131141
if: ${{ steps.check-agda.outcome == 'failure'}}
132142
run: |
133-
stack install --resolver=lts-24.1 --allow-different-user ${{ matrix.agda }}
134-
echo "STACK_LOCAL_BIN=$(stack path --local-bin)" >> "$GITHUB_ENV"
143+
stack install --stack-yaml=${{ matrix.stack-config }} --allow-different-user ${{ matrix.agda-version }}
144+
echo "STACK_LOCAL_BIN=$(stack path --stack-yaml=${{ matrix.stack-config }} --local-bin)" >> "$GITHUB_ENV"
135145
136146
- name: 📦 Move artefacts to ${{ env.DIST }}
137147
if: ${{ steps.check-agda.outcome == 'failure'}}

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2525
- Browser file path handling
2626
- SharedArrayBuffer availability check
2727

28-
29-
3028
## v0.6.7 - 2025-09-12
3129

3230
### Added
@@ -42,6 +40,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4240
### Fixed
4341

4442
- Agda 2.8.0 compatibility - Handle different output format from Agda 2.8.0
43+
- Made connection status at the top right of the panel clickable and opens version switching UI when clicked
44+
45+
### Changed
46+
- GHC & Stack: Upgraded to GHC 9.10.2 and Stack lts-24.1 in CI
4547

4648
## v0.6.6 - 2025-08-31
4749

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "agda-mode on vscode",
55
"icon": "asset/logo.png",
66
"publisher": "banacorn",
7-
"version": "0.6.6",
7+
"version": "0.6.7",
88
"engines": {
99
"vscode": "^1.94.0"
1010
},

0 commit comments

Comments
 (0)