macos not supported? ono

This commit is contained in:
Noah Santschi-Cooney 2021-01-29 23:27:17 +00:00
parent 85730a2c52
commit a085f50dd9
No known key found for this signature in database
GPG key ID: 3B22282472C8AE48
2 changed files with 1 additions and 16 deletions

View file

@ -20,5 +20,5 @@ local Pipeline(name, os) = {
[
Pipeline("Linux", "linux"),
Pipeline("Windows", "windows"),
Pipeline("MacOS", "darwin"),
//Pipeline("MacOS", "darwin"),
]

View file

@ -28,19 +28,4 @@ steps:
- cargo build --verbose --all
- cargo test --verbose --all
---
kind: pipeline
name: MacOS
platform:
os: darwin
arch: amd64
steps:
- name: test
image: rust:1.49-slim-buster
commands:
- cargo build --verbose --all
- cargo test --verbose --all
...