Move to github actions step 2

This commit is contained in:
Noah Santschi-Cooney 2021-01-29 23:41:44 +00:00
parent 51dd25206e
commit d9d44b3e77
No known key found for this signature in database
GPG key ID: 3B22282472C8AE48
2 changed files with 0 additions and 58 deletions

View file

@ -1,25 +0,0 @@
local Pipeline(name, os) = {
kind: "pipeline",
name: name,
platform: {
os: os,
arch: "amd64"
},
steps: [
{
name: "test",
image: "rust:1.49-slim-buster",
commands: [
"cd server",
"cargo build --verbose --all",
"cargo test --verbose --all"
]
}
]
};
[
Pipeline("Linux", "linux"),
Pipeline("Windows", "windows"),
//Pipeline("MacOS", "darwin"),
]

View file

@ -1,33 +0,0 @@
---
kind: pipeline
name: Linux
platform:
os: linux
arch: amd64
steps:
- name: test
image: rust:1.49-slim-buster
commands:
- cd server
- cargo build --verbose --all
- cargo test --verbose --all
---
kind: pipeline
name: Windows
platform:
os: windows
arch: amd64
steps:
- name: test
image: rust:1.49-slim-buster
commands:
- cd server
- cargo build --verbose --all
- cargo test --verbose --all
...