Revision f2f43c8fd1d26e7e78f1c438e0429b8797d0e004 authored by Marina Polubelova on 07 March 2021, 13:52:38 UTC, committed by Marina Polubelova on 07 March 2021, 13:52:38 UTC
1 parent 1a7fcb9
Raw File
.drone.yml
kind: pipeline
type: docker
name: arm64

platform:
  arch: arm64

steps:
- name: test
  image: rust:latest
  commands:
  - apt update -qq --yes && apt install -qq --yes opam aspcud ocaml clang
  - opam init --yes --bare --disable-sandboxing
  - opam switch create 4.09.1 --yes
  - eval $(opam config env)
  - opam install --yes cppo ctypes ctypes-foreign dune zarith
  - bash .ci/script.sh
back to top