forked from antmicro/renode-linux-runner-action
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Preparing to ship v1 version (antmicro#49)
Replaces `required_by` with `before` for grater clarity. The before dependency is no longer strict. Tasks that need to be started after the specific task do not need to exist. Fixes `error` function override by local variable in get_file function. Adds test that checks correctness of custom tasks Action now catches the pexepect.EOF exception Deletes depreacted `shared-dir` parameter (`shared-dirs` stays)
- Loading branch information
1 parent
94b1ec8
commit 3ca9311
Showing
13 changed files
with
68 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name: device-gpio | ||
shell: target | ||
required-by: [chroot] | ||
before: [chroot] | ||
echo: true | ||
timeout: 10 | ||
fail-fast: true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name: device-i2c | ||
shell: target | ||
required-by: [chroot] | ||
before: [chroot] | ||
echo: true | ||
timeout: 10 | ||
fail-fast: true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name: device-vivid | ||
shell: target | ||
required-by: [chroot] | ||
before: [chroot] | ||
echo: true | ||
timeout: 10 | ||
fail-fast: true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
name: python-exists-image | ||
shell: target | ||
requires: [chroot] | ||
echo: true | ||
timeout: 5 | ||
should-fail: false | ||
commands: | ||
- command: | ||
- "sh -c \"if command -v python &> /dev/null; then echo Python available; exit 0; else echo Python not available; exit 1; fi;\"" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
name: python-exists-initramfs | ||
shell: target | ||
before: [chroot] | ||
echo: true | ||
timeout: 5 | ||
should-fail: true | ||
commands: | ||
- command: | ||
- "sh -c \"if command -v python &> /dev/null; then echo Python available; exit 0; else echo Python not available; exit 1; fi;\"" |