Revision d65e32adf1d6233b49571b3677a2b3fd6486c385 authored by Son HO on 17 February 2021, 16:56:15 UTC, committed by GitHub on 17 February 2021, 16:56:15 UTC
2 parent s c51083c + 1025464
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