-
Notifications
You must be signed in to change notification settings - Fork 13
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
10f875e
commit 3e330bf
Showing
3 changed files
with
25 additions
and
8 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,9 +1,13 @@ | ||
# Compiler output | ||
# Compiler output. | ||
build/ | ||
build-lib/ | ||
|
||
# Clangd config | ||
# Clangd config. | ||
compile_flags.txt | ||
|
||
# Ignore example | ||
# Ignore example. | ||
example/ | ||
|
||
# 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/swicc:1.0.0 2>&1 | tee docker.log; | ||
docker run -v ./docker:/opt/out --tty --interactive --rm tomasz-lisowski/swicc: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