Skip to content

Commit 597c80c

Browse files
committed
[eclipse-uprotocol#232] Replace local workflows
Use references to assets from the uProtocol CI/CD repo instead of keeping local copies of workflows/actions.
1 parent 4ac9aba commit 597c80c

11 files changed

+14
-515
lines changed

.github/actions/run-oft/README.md

-19
This file was deleted.

.github/actions/run-oft/action.yaml

-58
This file was deleted.

.github/workflows/coverage.yaml

-83
This file was deleted.

.github/workflows/license-report.yaml

-58
This file was deleted.

.github/workflows/nightly.yaml

+7-6
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ env:
3030

3131
jobs:
3232
check-msrv:
33-
uses: ./.github/workflows/verify-msrv.yaml
33+
uses: eclipse-uprotocol/ci-cd/.github/workflows/rust/verify-msrv.yaml@main
3434

3535
check-latest-deps:
36-
uses: ./.github/workflows/verify-latest-deps.yaml
36+
uses: eclipse-uprotocol/ci-cd/.github/workflows/rust/verify-latest-deps.yaml@main
3737

3838
deny:
3939
runs-on: ubuntu-latest
@@ -47,17 +47,18 @@ jobs:
4747
command: check
4848
arguments: --all-features
4949

50+
# [impl->req~up-language-ci-test~1]
5051
test-all-features:
51-
uses: ./.github/workflows/test-featurematrix.yaml
52+
uses: eclipse-uprotocol/ci-cd/.github/workflows/rust/test-featurematrix.yaml@main
5253

5354
x-build:
5455
# The jury is still out on whether this actually adds any value, besides simply being possible...
55-
uses: ./.github/workflows/x-build.yaml
56+
uses: eclipse-uprotocol/ci-cd/.github/workflows/rust/x-build.yaml@main
5657

5758
coverage:
58-
uses: ./.github/workflows/coverage.yaml
59+
uses: eclipse-uprotocol/ci-cd/.github/workflows/rust/coverage.yaml@main
5960

6061
requirements-tracing:
61-
uses: ./.github/workflows/requirements-tracing.yaml
62+
uses: eclipse-uprotocol/ci-cd/.github/workflows/requirements-tracing.yaml@main
6263
with:
6364
oft-file-patterns: "${{ vars.UP_SPEC_OPEN_FAST_TRACE_FILE_PATTERNS }} ${{ vars.UP_RUST_OPEN_FAST_TRACE_FILE_PATTERNS }}"

.github/workflows/release.yaml

+7-4
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,22 @@ jobs:
2929
uses: ./.github/workflows/check.yaml
3030

3131
check-msrv:
32-
uses: ./.github/workflows/verify-msrv.yaml
32+
uses: eclipse-uprotocol/ci-cd/.github/workflows/rust/verify-msrv.yaml@main
3333

3434
coverage:
35-
uses: ./.github/workflows/coverage.yaml
35+
uses: eclipse-uprotocol/ci-cd/.github/workflows/rust/coverage.yaml@main
3636

3737
requirements-tracing:
38-
uses: ./.github/workflows/requirements-tracing.yaml
38+
uses: eclipse-uprotocol/ci-cd/.github/workflows/requirements-tracing.yaml@main
3939
with:
4040
oft-file-patterns: "${{ vars.UP_SPEC_OPEN_FAST_TRACE_FILE_PATTERNS }} ${{ vars.UP_RUST_OPEN_FAST_TRACE_FILE_PATTERNS }}"
4141

4242
licenses:
4343
# This works off the license declarations in dependent packages/crates, so if these declarations are wrong, this report will contain erroneous information
44-
uses: ./.github/workflows/license-report.yaml
44+
uses: eclipse-uprotocol/ci-cd/.github/workflows/rust/license-report.yaml@main
45+
with:
46+
templates: "about.hbs"
47+
config: "about.toml"
4548

4649
tag_release_artifacts:
4750
# This only runs if this workflow is initiated via a tag-push with pattern 'v*'

.github/workflows/requirements-tracing.yaml

-58
This file was deleted.

0 commit comments

Comments
 (0)