mirror of
https://github.com/Strum355/mcshader-lsp.git
synced 2025-08-28 04:24:09 +00:00
Move to github actions step 2
This commit is contained in:
parent
51dd25206e
commit
d9d44b3e77
2 changed files with 0 additions and 58 deletions
|
@ -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"),
|
||||
]
|
33
.drone.yml
33
.drone.yml
|
@ -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
|
||||
|
||||
...
|
Loading…
Add table
Add a link
Reference in a new issue