forked from ish-app/ish
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- script sets up test file system - add -y flag to auto-accept setup prompt - change travis script to use meson test
- Loading branch information
1 parent
e1b6376
commit f7c00d1
Showing
5 changed files
with
37 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
#!/bin/sh | ||
apk update > verbose.txt | ||
apk add gcc libc-dev >> verbose.txt | ||
gcc test_fpu.c -o ./test_fpu | ||
./test_fpu |
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,11 +1,8 @@ | ||
#!/bin/sh | ||
echo Hello, sh! | ||
|
||
apk update > verbose.txt | ||
apk add python2 python3 >> verbose.txt | ||
python test_python2.py | ||
python3 test_python3.py | ||
|
||
apk add gcc libc-dev >> verbose.txt | ||
gcc test_c.c -o ./hello_c | ||
./hello_c |