update
This commit is contained in:
parent
51ab771699
commit
01c8af250a
3 changed files with 12 additions and 2 deletions
9
.github/workflows/build.yml
vendored
9
.github/workflows/build.yml
vendored
|
@ -16,6 +16,11 @@ jobs:
|
||||||
with:
|
with:
|
||||||
ghc-version: 9.8.2
|
ghc-version: 9.8.2
|
||||||
cabal-version: 3.10.3.0
|
cabal-version: 3.10.3.0
|
||||||
|
- run: mkdir -p installdir
|
||||||
- name: Install Agda
|
- name: Install Agda
|
||||||
run: cabal install Agda
|
run: cabal install --installdir installdir Agda
|
||||||
-
|
- run: tar cvf agda.tar.gz -C "$(dirname $(dirname $(realpath installdir/agda)))" .
|
||||||
|
- uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: agda.tar.gz
|
||||||
|
path: agda.tar.gz
|
2
Dockerfile
Normal file
2
Dockerfile
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
FROM ubuntu:latest
|
||||||
|
|
3
docker-compose.yml
Normal file
3
docker-compose.yml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
services:
|
||||||
|
dev:
|
||||||
|
build: .
|
Loading…
Reference in a new issue