Skip to content
This repository has been archived by the owner on Jul 25, 2022. It is now read-only.

Commit

Permalink
Add pipeline for 5.0 release (#910)
Browse files Browse the repository at this point in the history
* Add pipeline for 5.0 release

Add a new 5.0 release azure pipeline.

Signed-off-by: Joe Grund <[email protected]>

* reorganize

Signed-off-by: Joe Grund <[email protected]>
  • Loading branch information
jgrund authored May 3, 2019
1 parent dc46595 commit 75dbc45
Show file tree
Hide file tree
Showing 11 changed files with 40 additions and 13 deletions.
27 changes: 27 additions & 0 deletions ci/azure-5.0-release-pipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
trigger:
tags:
include:
- v*r5.0


jobs:
# Release to production Copr
- template: template/azure-release.yml
parameters:
name: copr_push
displayName: Copr Push
project: manager-for-lustre-5.0
package: rust-iml
spec: rust-iml.spec
release: true

# Wasm-Components Continuous Release to Prod Copr
- template: template/azure-release.yml
parameters:
name: wasm_components_copr_devel_push
displayName: Wasm Components Copr Devel Push
project: manager-for-lustre-5.0
package: iml-wasm-components
spec: iml-wasm-components.spec
crate: iml-wasm-components
release: true
26 changes: 13 additions & 13 deletions azure-pipelines.yml → ci/azure-build-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,37 +6,37 @@ trigger:

jobs:
# Check formatting
- template: ci/azure-rustfmt.yml
- template: template/azure-rustfmt.yml
parameters:
name: rustfmt

# Check linting
- template: ci/azure-clippy.yml
- template: template/azure-clippy.yml
parameters:
name: clippy
displayName: Lint Rust IML

# Test top level crate
- template: ci/azure-test-stable.yml
- template: template/azure-test-stable.yml
parameters:
name: test_iml
displayName: Test IML

# Test top level crate
- template: ci/azure-test-coverage.yml
- template: template/azure-test-coverage.yml
parameters:
name: iml_coverage
displayName: Collect Rust IML Coverage

# Check building rpm works
- template: ci/azure-build-check.yml
- template: template/azure-build-check.yml
parameters:
name: test_rpm_build
displayName: Test rpm building
spec: rust-iml.spec

# Continuous Release to Devel Copr
- template: ci/azure-release.yml
- template: template/azure-release.yml
parameters:
name: copr_devel_push
displayName: Copr Devel Push
Expand All @@ -47,7 +47,7 @@ jobs:
branchref: refs/heads/master

# Release to production Copr
- template: ci/azure-release.yml
- template: template/azure-release.yml
parameters:
name: copr_push
displayName: Copr Push
Expand All @@ -58,35 +58,35 @@ jobs:
branchref: refs/tags/

# Check formatting
- template: ci/azure-rustfmt.yml
- template: template/azure-rustfmt.yml
parameters:
name: rustfmt_wasm
crate: iml-wasm-components

# Check linting
- template: ci/azure-clippy.yml
- template: template/azure-clippy.yml
parameters:
name: clippy_wasm
displayName: Lint Wasm Components
crate: iml-wasm-components

# Test wasm-components
- template: ci/azure-test-stable.yml
- template: template/azure-test-stable.yml
parameters:
name: test_wasm_components
displayName: Test Wasm components
crate: iml-wasm-components

# Check building wasm-components rpm works
- template: ci/azure-build-check.yml
- template: template/azure-build-check.yml
parameters:
name: test_wasm_rpm_build
displayName: Test wasm rpm building
spec: iml-wasm-components.spec
crate: iml-wasm-components

# Wasm-Components Continuous Release to Devel Copr
- template: ci/azure-release.yml
- template: template/azure-release.yml
parameters:
name: wasm_components_copr_push
displayName: Wasm Components Copr Push
Expand All @@ -98,7 +98,7 @@ jobs:
branchref: refs/heads/master

# Wasm-Components Continuous Release to Prod Copr
- template: ci/azure-release.yml
- template: template/azure-release.yml
parameters:
name: wasm_components_copr_devel_push
displayName: Wasm Components Copr Devel Push
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 75dbc45

Please sign in to comment.