summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGregory <gregory.mkv@gmail.com>2020-07-03 11:51:57 -0400
committerGregory <gregory.mkv@gmail.com>2020-07-03 11:51:57 -0400
commit75429419b185313977ed6e992d43bd7ad7b5b011 (patch)
treea475df425c10933b0e8ccca4eb36daee0d509c85
parent8268d403c52612483f8aaa514ca32b0ee1497171 (diff)
Cleanup
-rw-r--r--.github/workflows/test.yml5
-rw-r--r--azure-pipelines.yml37
2 files changed, 2 insertions, 40 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 0cb08a4..d453a08 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -3,8 +3,8 @@ name: Test
on: [pull_request]
jobs:
- publish:
- name: Publish for ${{ matrix.os }}
+ test:
+ name: Test for ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
@@ -35,6 +35,5 @@ jobs:
override: true
target: ${{ matrix.target }}
-
- name: Test
run: cargo test
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
deleted file mode 100644
index d51b8c7..0000000
--- a/azure-pipelines.yml
+++ /dev/null
@@ -1,37 +0,0 @@
-trigger:
- branches:
- include: ['*']
- tags:
- include: ['*']
-
-resources:
- repositories:
- - repository: rust_pipelines
- type: github
- name: xoac/rust-azure-pipelines
- ref: refs/heads/master
- endpoint: githubConnection
-stages:
-- stage: test
- displayName: "Test"
- jobs:
- - template: ci/jobs/cargo-test.yaml@rust_pipelines
-
- #condition: and(succeeded(), startsWith(variables['Build.SourceBranch'], 'refs/tags/v'))
-- stage: build
- displayName: "Build"
- jobs:
- - template: ci/scenarios/builds.yml@rust_pipelines
- dependsOn:
- - test
-
-# Deploy binaries to github only if tags start with `v` for example `v0.1.5`
-- stage: deploy
- displayName: "Deploy"
- dependsOn:
- - build
- jobs:
- - template: ci/scenarios/github/release.yml@rust_pipelines
- parameters:
- job_condition: and(succeeded(), startsWith(variables['Build.SourceBranch'], 'refs/tags/v'))
- gitHubConnection: githubConnection