-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
56 lines (52 loc) · 1.63 KB
/
Copy pathaction.yml
File metadata and controls
56 lines (52 loc) · 1.63 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
55
56
name: 'CI Job Launcher'
description: 'Launch a JEDI-CI job'
author: 'JCSDA'
inputs:
container_version:
description: 'Container version (latest, next)'
required: true
default: 'latest'
target_project_name:
description: 'Name build bundle project for this repository (if different from the repo name).'
required: false
default: ''
jedi_ci_token:
description: 'GitHub token associated with the JEDI CI GitHub app'
required: false
default: ''
test_script:
description: 'Test script to run (must be in //jedi-ci/shell/)'
required: false
default: 'run_tests.sh'
bundle_repository:
description: 'Repository to use when cloning the bundle.'
required: false
default: 'https://github.com/JCSDA-internal/jedi-bundle.git'
bundle_branch:
description: 'Default branch to use when cloning the bundle.'
required: false
default: 'develop'
unittest_tag:
description: 'CMake tag used to execute unit tests.'
required: false
default: ''
self_test:
description: 'Whether to run a self-test of the JEDI CI action.'
required: false
default: 'false'
# GITHUB_TOKEN: ${{ inputs.github_token }}
runs:
using: 'docker'
image: 'Dockerfile'
env:
UNITTEST_TAG: ${{ inputs.unittest_tag }}
CONTAINER_VERSION: ${{ inputs.container_version }}
TARGET_PROJECT_NAME: ${{ inputs.target_project_name }}
BUNDLE_BRANCH: ${{ inputs.bundle_branch }}
TEST_SCRIPT: ${{ inputs.test_script }}
BUNDLE_REPOSITORY: ${{ inputs.bundle_repository }}
CI_SELF_TEST: ${{ inputs.self_test }}
JEDI_CI_TOKEN: ${{ inputs.jedi_ci_token }}
branding:
icon: 'play'
color: 'blue'