forked from samcamwilliams/HyperBEAM
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #102 from permaweb/feat/dev_snp_nif
feat: SNP validation NIF and BEAMR refactor
- Loading branch information
Showing
57 changed files
with
4,917 additions
and
1,823 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
"editor.detectIndentation": false, | ||
"editor.insertSpaces": false, | ||
"editor.tabSize": 4 | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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,35 @@ | ||
FROM --platform=linux/amd64 ubuntu:22.04 | ||
|
||
RUN apt-get update && apt-get install -y \ | ||
build-essential \ | ||
cmake \ | ||
git \ | ||
pkg-config \ | ||
ncurses-dev \ | ||
libssl-dev \ | ||
sudo | ||
|
||
RUN git clone https://github.com/erlang/otp.git && \ | ||
cd otp && \ | ||
git checkout maint-27 && \ | ||
./configure && \ | ||
make -j16 && \ | ||
sudo make install | ||
|
||
RUN git clone https://github.com/erlang/rebar3.git && \ | ||
cd rebar3 && \ | ||
./bootstrap && \ | ||
sudo mv rebar3 /usr/local/bin/ | ||
|
||
RUN git clone https://github.com/rust-lang/rust.git && \ | ||
cd rust && \ | ||
./configure && \ | ||
make && \ | ||
sudo make install | ||
|
||
COPY . /app | ||
|
||
RUN cd /app && \ | ||
rebar3 compile | ||
|
||
CMD ["/bin/bash"] |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.