-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add devcontainer * Run formatter * Fix dockerfile * Move things to testsets * Test fixes * Formatting * Tweaks * Use do block * Fix test
- Loading branch information
1 parent
9724a17
commit f9c7d62
Showing
4 changed files
with
748 additions
and
504 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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM julia:1.7 | ||
|
||
RUN apt-get update && apt-get install --no-install-recommends -y git && rm -rf /var/lib/apt/lists/* | ||
|
||
WORKDIR /app | ||
|
||
# COPY Project.toml . | ||
|
||
# RUN julia -e 'using Pkg; Pkg.dev(""); Pkg.instantiate(); Pkg.precompile();' |
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,8 @@ | ||
|
||
{ | ||
"extensions": [ | ||
"julialang.language-julia" | ||
], | ||
"runArgs": ["--privileged"], | ||
"dockerFile": "Dockerfile" | ||
} |
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,8 @@ | ||
[deps] | ||
DBInterface = "a10d1c49-ce27-4219-8d33-6db1a4562965" | ||
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a" | ||
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" | ||
SQLite = "0aa819cd-b072-5ff4-a722-6bc24af294d9" | ||
Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c" | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||
WeakRefStrings = "ea10d353-3f73-51f8-a26c-33c1cb351aa5" |
Oops, something went wrong.