1
0
mirror of https://github.com/chmln/sd synced 2024-07-05 15:18:35 +00:00
This commit is contained in:
Gregory 2020-07-03 11:51:57 -04:00
parent 8268d403c5
commit 75429419b1
No known key found for this signature in database
GPG Key ID: 2E44FAEEDC94B1E2
2 changed files with 2 additions and 40 deletions

View File

@ -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

View File

@ -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