-
Notifications
You must be signed in to change notification settings - Fork 2
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
8b71000
commit 6b60bfc
Showing
18 changed files
with
103 additions
and
92 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,25 @@ | ||
[[heta_app]] | ||
arch = "x86_64" | ||
git-tree-sha1 = "7f561aa65b663cbd121aacdc41dbc24160df2f84" | ||
libc = "glibc" | ||
os = "linux" | ||
|
||
[[heta_app.download]] | ||
sha256 = "4883f831dabc2f1ed78234fa61a7cc980ca61744055b893fa3da77714252303a" | ||
url = "https://github.com/hetalang/heta-compiler/releases/download/v0.8.6/heta-compiler-linux.tar.gz" | ||
[[heta_app]] | ||
arch = "x86_64" | ||
git-tree-sha1 = "93c1330a1dce7f8aa62214c0cb5e612c02187956" | ||
os = "windows" | ||
|
||
[[heta_app.download]] | ||
sha256 = "a0611f5ca671bd67edda6fbb062322ca89dbe2f4f0852ea8db30788f43c789c7" | ||
url = "https://github.com/hetalang/heta-compiler/releases/download/v0.8.6/heta-compiler-windows.tar.gz" | ||
[[heta_app]] | ||
arch = "x86_64" | ||
git-tree-sha1 = "403687ab7168c0a246610d1bb6513d3cb1e5d549" | ||
os = "macos" | ||
|
||
[[heta_app.download]] | ||
sha256 = "5381c78d522bd550991265f37b7699387c85bb1af49eb08c313a8b9abb732335" | ||
url = "https://github.com/hetalang/heta-compiler/releases/download/v0.8.6/heta-compiler-macos.tar.gz" |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[deps] | ||
ArtifactUtils = "8b73e784-e7d8-4ea5-973d-377fed4e3bce" | ||
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f" |
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,21 @@ | ||
using ArtifactUtils | ||
using Pkg.Artifacts | ||
|
||
const HETA_COMPILER_RELEASE = "v0.8.6" | ||
|
||
const artifacts_toml = joinpath(@__DIR__, "..", "Artifacts.toml") | ||
|
||
for os in ("linux", "windows", "macos") | ||
|
||
url = "https://github.com/hetalang/heta-compiler/releases/download/$HETA_COMPILER_RELEASE/heta-compiler-$os.tar.gz" | ||
platform = Artifacts.Platform("x86_64", os) | ||
|
||
add_artifact!( | ||
artifacts_toml, | ||
"heta_app", | ||
url; | ||
platform, | ||
force = true, | ||
lazy = false, | ||
) | ||
end |
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 @@ | ||
[info] Namespace "nameless" was set as "concrete" | ||
[info] Builder initialized in directory "C:\Julia\dev\HetaSimulator". | ||
[info] Compilation of module "index.heta" of type "heta"... | ||
[info] Reading module of type "heta" from file "C:\Julia\dev\HetaSimulator\index.heta"... | ||
[error] ENOENT: no such file or directory, open 'C:\Julia\dev\HetaSimulator\index.heta' | ||
[info] Setting references in elements, total length 77 | ||
[info] Checking for circular references in Records. | ||
[warn] Units checking and export were skipped because of errors in compilation. |
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,3 @@ | ||
#= | ||
Example from README.md file | ||
use heta_update_dev() | ||
=# | ||
|
||
using HetaSimulator, Plots | ||
|
||
|
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
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,4 @@ | ||
using HetaSimulator, Plots, CSV | ||
# heta_update() | ||
|
||
### creating platform | ||
|
||
|
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
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,2 @@ | ||
|
||
@test chomp(read(`$(HetaSimulator.heta_exe_path) -v`, String)) == HetaSimulator.HETA_COMPILER_VERSION |
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