Skip to content

Commit 86ff1f9

Browse files
ci_script/action.yml: Add ci-flags for running ci.sh script
The ci-flags input will allow to call the ci.sh script with arguments and for them to be specified from each ci job that uses the composite workflow in question. Signed-off-by: Tomás González <tomasagustin.gonzalezorlando@arm.com>
1 parent b110aa0 commit 86ff1f9

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/actions/ci_script/action.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
name: "CI script Tests"
22
description: "Install and run Parsec with the Mbed Crypto provider"
3+
inputs:
4+
ci-flags:
5+
required: true
6+
default: ""
7+
description: "Flags with which to run the ci.sh tests"
38

49
runs:
510
using: "composite"
@@ -12,5 +17,5 @@ runs:
1217
./target/debug/parsec -c ../tests/test_config.toml &
1318
shell: bash
1419
- name: Execute CI script
15-
run: ./tests/ci.sh
20+
run: ./tests/ci.sh ${{ inputs.ci-flags }}
1621
shell: bash

0 commit comments

Comments
 (0)