2021-11-15 06:51:48 +00:00
|
|
|
---
|
|
|
|
name: test-retest-action
|
|
|
|
# yamllint disable-line rule:truthy
|
|
|
|
on:
|
|
|
|
pull_request:
|
2021-11-16 15:02:22 +00:00
|
|
|
branches: [devel]
|
2023-02-21 08:35:41 +00:00
|
|
|
paths:
|
|
|
|
- 'actions/retest/**'
|
|
|
|
- '.github/workflows/test-retest-action.yaml'
|
2021-11-15 06:51:48 +00:00
|
|
|
|
2022-05-01 01:00:30 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2021-11-15 06:51:48 +00:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-09-18 09:19:02 +00:00
|
|
|
# yamllint disable-line rule:line-length
|
2024-10-28 20:18:00 +00:00
|
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
2021-11-15 06:51:48 +00:00
|
|
|
|
2021-11-16 14:55:59 +00:00
|
|
|
- name: Docker build
|
|
|
|
# Run cd to avoid loading complete cephcsi directory in docker context
|
|
|
|
# while building retest image.
|
|
|
|
run: cd actions/retest && docker build -t retest .
|