Skip to content

Commit

Permalink
chore: freeze CI ref (#155)
Browse files Browse the repository at this point in the history
Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>
  • Loading branch information
kenji-miyake authored Dec 9, 2021
1 parent 49629c8 commit 5837ed5
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-and-test-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,26 @@ on:

jobs:
get-modified-packages:
uses: autowarefoundation/autoware-github-actions/.github/workflows/reusable-get-modified-packages.yaml@tier4/proposal
uses: autowarefoundation/autoware-github-actions/.github/workflows/reusable-get-modified-packages.yaml@6a086d5eac5effbed9876049233213f5cd358914
with:
script-ref: tier4/proposal
script-ref: 6a086d5eac5effbed9876049233213f5cd358914

get-modified-source-files:
uses: autowarefoundation/autoware-github-actions/.github/workflows/reusable-get-modified-source-files.yaml@tier4/proposal
uses: autowarefoundation/autoware-github-actions/.github/workflows/reusable-get-modified-source-files.yaml@6a086d5eac5effbed9876049233213f5cd358914

build-and-test:
needs: get-modified-packages
uses: autowarefoundation/autoware-github-actions/.github/workflows/reusable-colcon-build-and-test.yaml@tier4/proposal
uses: autowarefoundation/autoware-github-actions/.github/workflows/reusable-colcon-build-and-test.yaml@6a086d5eac5effbed9876049233213f5cd358914
with:
rosdistro: galactic
build-depends-repos: build_depends.repos
target-packages: ${{ needs.get-modified-packages.outputs.modified-packages }}

clang-tidy:
needs: [get-modified-source-files, build-and-test]
uses: autowarefoundation/autoware-github-actions/.github/workflows/reusable-clang-tidy.yaml@tier4/proposal
uses: autowarefoundation/autoware-github-actions/.github/workflows/reusable-clang-tidy.yaml@6a086d5eac5effbed9876049233213f5cd358914
with:
script-ref: tier4/proposal
script-ref: 6a086d5eac5effbed9876049233213f5cd358914
rosdistro: galactic
build-depends-repos: build_depends.repos
target-files: ${{ needs.get-modified-source-files.outputs.modified-source-files }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-and-test-scheduled.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ on:

jobs:
get-self-packages:
uses: autowarefoundation/autoware-github-actions/.github/workflows/reusable-get-self-packages.yaml@tier4/proposal
uses: autowarefoundation/autoware-github-actions/.github/workflows/reusable-get-self-packages.yaml@6a086d5eac5effbed9876049233213f5cd358914

build-and-test:
needs: get-self-packages
uses: autowarefoundation/autoware-github-actions/.github/workflows/reusable-colcon-build-and-test.yaml@tier4/proposal
uses: autowarefoundation/autoware-github-actions/.github/workflows/reusable-colcon-build-and-test.yaml@6a086d5eac5effbed9876049233213f5cd358914
with:
rosdistro: galactic
build-depends-repos: build_depends.repos
target-packages: ${{ needs.get-self-packages.outputs.self-packages }}

build-and-test-arm64:
needs: get-self-packages
uses: autowarefoundation/autoware-github-actions/.github/workflows/reusable-colcon-build-and-test.yaml@tier4/proposal
uses: autowarefoundation/autoware-github-actions/.github/workflows/reusable-colcon-build-and-test.yaml@6a086d5eac5effbed9876049233213f5cd358914
with:
os: ARM64
rosdistro: galactic
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/generate-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches:
- main
- tier4/proposal
- 6a086d5eac5effbed9876049233213f5cd358914
paths:
- "mkdocs.yaml"
- "**/*.md"
Expand All @@ -21,13 +21,13 @@ on:

jobs:
get-docs-version-name:
uses: autowarefoundation/autoware-github-actions/.github/workflows/reusable-get-docs-version-name.yaml@tier4/proposal
uses: autowarefoundation/autoware-github-actions/.github/workflows/reusable-get-docs-version-name.yaml@6a086d5eac5effbed9876049233213f5cd358914

generate-docs:
uses: autowarefoundation/autoware-github-actions/.github/workflows/reusable-generate-docs.yaml@tier4/proposal
uses: autowarefoundation/autoware-github-actions/.github/workflows/reusable-generate-docs.yaml@6a086d5eac5effbed9876049233213f5cd358914
needs: get-docs-version-name
with:
script-ref: tier4/proposal
script-ref: 6a086d5eac5effbed9876049233213f5cd358914
mkdocs-yaml: mkdocs.yaml
version-name: ${{ needs.get-docs-version-name.outputs.version-name }}
secrets:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/remove-old-pr-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ on:

jobs:
get-docs-version-name:
uses: autowarefoundation/autoware-github-actions/.github/workflows/reusable-get-docs-version-name.yaml@tier4/proposal
uses: autowarefoundation/autoware-github-actions/.github/workflows/reusable-get-docs-version-name.yaml@6a086d5eac5effbed9876049233213f5cd358914

remove-old-pr-docs:
uses: autowarefoundation/autoware-github-actions/.github/workflows/reusable-remove-docs.yaml@tier4/proposal
uses: autowarefoundation/autoware-github-actions/.github/workflows/reusable-remove-docs.yaml@6a086d5eac5effbed9876049233213f5cd358914
needs: get-docs-version-name
with:
script-ref: tier4/proposal
script-ref: 6a086d5eac5effbed9876049233213f5cd358914
mkdocs-yaml: mkdocs.yaml
version-name: ${{ needs.get-docs-version-name.outputs.version-name }}
secrets:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/semantic-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ on:

jobs:
semantic-pull-request:
uses: autowarefoundation/autoware-github-actions/.github/workflows/reusable-semantic-pull-request.yaml@tier4/proposal
uses: autowarefoundation/autoware-github-actions/.github/workflows/reusable-semantic-pull-request.yaml@6a086d5eac5effbed9876049233213f5cd358914
secrets:
token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/spell-check-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ on:

jobs:
spell-check:
uses: autowarefoundation/autoware-github-actions/.github/workflows/reusable-spell-check.yaml@tier4/proposal
uses: autowarefoundation/autoware-github-actions/.github/workflows/reusable-spell-check.yaml@6a086d5eac5effbed9876049233213f5cd358914
with:
cspell-json-url: https://raw.githubusercontent.com/tier4/autoware-spell-check-dict/main/cspell/.cspell.json

0 comments on commit 5837ed5

Please sign in to comment.