forked from PaddlePaddle/Paddle
-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (47 loc) · 1.15 KB
/
Slice-baseline.yml
File metadata and controls
54 lines (47 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: Slice-baseline-paddle
on:
workflow_dispatch:
inputs:
PR_ID:
required: false
type: string
COMMIT_ID:
required: false
type: string
schedule:
- cron: '0 20 * * 0'
permissions: read-all
defaults:
run:
shell: bash
jobs:
clone:
name: Slice-base clone
uses: ./.github/workflows/_Clone-linux.yml
with:
clone_dir: Paddle-build
is_pr: 'false'
build-docker:
name: Slice build docker
needs: clone
uses: ./.github/workflows/docker.yml
with:
clone_dir: Paddle-build
task: build
build:
name: Slice build
needs: [clone, build-docker]
uses: ./.github/workflows/_Linux-build.yml
with:
docker_build_image: ${{ needs.build-docker.outputs.docker_build_image }}
is_pr: 'false'
slice-test:
name: Slice test
uses: ./.github/workflows/_Slice.yml
needs: [clone, build-docker, build]
with:
docker_build_image: ${{ needs.build-docker.outputs.docker_build_image }}
slice-check: 'true'
SLICE_TEST_MODE: insert_baseline
MANUALLY_PR_ID: ${{ inputs.PR_ID }}
MANUALLY_COMMIT_ID: ${{ inputs.COMMIT_ID }}