We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a390fde commit 2ee95b4Copy full SHA for 2ee95b4
.drone.yml
@@ -0,0 +1,30 @@
1
+kind: pipeline
2
+name: arm64
3
+platform: { os: linux, arch: arm64 }
4
+steps:
5
+- name: Test
6
+ image: buildpack-deps:focal
7
+ commands:
8
+ - export LC_ALL=C.UTF-8
9
+ - apt-get update -y
10
+ - apt-get install -y ghc cabal-install
11
+ - ghc --version
12
+ - cabal --version
13
+ - cabal new-update
14
+ - cabal new-test
15
+---
16
17
+name: i386
18
+platform: { os: linux, arch: amd64 }
19
20
21
+ image: i386/ubuntu
22
23
24
25
26
27
28
+ - cabal update
29
+ - cabal install --dependencies-only --enable-tests
30
+ - cabal test
0 commit comments