-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4799875
commit 26fc532
Showing
4 changed files
with
27 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,16 @@ | ||
# Compiler output | ||
# Compiler output. | ||
build/ | ||
build-lib/ | ||
|
||
# Clangd config | ||
# Clangd config. | ||
compile_flags.txt | ||
|
||
# swICC FS Disk | ||
# swICC FS Disk. | ||
*.swiccfs | ||
|
||
# Logs | ||
# Logs. | ||
*.log | ||
|
||
# Docker output. | ||
docker/ | ||
docker.log |
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,7 @@ | ||
#!/bin/bash | ||
set -o nounset; # Abort on unbound variable. | ||
set -o pipefail; # Don't hide errors within pipes. | ||
set -o errexit; # Abort on non-zero exit status. | ||
|
||
docker build --progress=plain . -t tomasz-lisowski/swsim:1.0.0 2>&1 | tee docker.log; | ||
docker run -v ./docker:/opt/out --tty --interactive --rm tomasz-lisowski/swsim:1.0.0; |
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