Revision f95b54abf9076a7a072a54750b40dc9f85039b74 authored by Dzomo, the Everest Yak on 01 October 2021, 08:30:56 UTC, committed by Dzomo, the Everest Yak on 01 October 2021, 08:30:56 UTC
1 parent 3284441
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