-
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.
- Loading branch information
Liwei Ma
authored and
Liwei Ma
committed
May 17, 2020
1 parent
12cb657
commit dc1dc80
Showing
4 changed files
with
21 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Note: This version should be changed when releasing new versions of Wit. | ||
FROM davidmlw/alpine:alpine-3.10 | ||
|
||
COPY entrypoint.sh /entrypoint.sh | ||
|
||
ENTRYPOINT ["/entrypoint.sh"] |
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,7 +1,10 @@ | ||
#!/bin/sh | ||
|
||
set -euxo pipefail | ||
|
||
cd workspace | ||
mkdir -p scala && wget -O scala/coursier https://git.io/coursier-cli && chmod +x scala/coursier | ||
wake --init . | ||
exec wake $INPUT_ARGUMENTS | ||
wake -x 'compileScalaModule rocketchipScalaModule' | ||
pwd | ||
ls | ||
exec echo $INPUT_ARGUMENTS |