Skip to content

Commit

Permalink
Merge 2ee95b4 into a390fde
Browse files Browse the repository at this point in the history
  • Loading branch information
Bodigrim committed Sep 14, 2021
2 parents a390fde + 2ee95b4 commit 1973b4e
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .drone.yml
@@ -0,0 +1,30 @@
kind: pipeline
name: arm64
platform: { os: linux, arch: arm64 }
steps:
- name: Test
image: buildpack-deps:focal
commands:
- export LC_ALL=C.UTF-8
- apt-get update -y
- apt-get install -y ghc cabal-install
- ghc --version
- cabal --version
- cabal new-update
- cabal new-test
---
kind: pipeline
name: i386
platform: { os: linux, arch: amd64 }
steps:
- name: Test
image: i386/ubuntu
commands:
- export LC_ALL=C.UTF-8
- apt-get update -y
- apt-get install -y ghc cabal-install
- ghc --version
- cabal --version
- cabal update
- cabal install --dependencies-only --enable-tests
- cabal test

0 comments on commit 1973b4e

Please sign in to comment.