Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nucleo
Manage
Activity
Members
Labels
Plan
Issues
4
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
blockchain
nucleo
Commits
512ca90f
Commit
512ca90f
authored
5 years ago
by
Robert Martin-Legene
Browse files
Options
Downloads
Patches
Plain Diff
Hardwire some version numbers, so we are not always on the bleeding edge.
parent
25f76c53
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
bin/installbfa.sh
+5
-1
5 additions, 1 deletion
bin/installbfa.sh
bin/installsolc.sh
+5
-1
5 additions, 1 deletion
bin/installsolc.sh
lib/versions
+2
-0
2 additions, 0 deletions
lib/versions
with
12 additions
and
2 deletions
bin/installbfa.sh
+
5
−
1
View file @
512ca90f
...
...
@@ -124,12 +124,15 @@ function gethinstall
if
[
-d
${
NEW
}
/go-ethereum
]
then
info
"Running git pull to ensure that the local go-ethereum repo is up-to-date."
runasownerof
${
NEW
}
/go-ethereum git checkout master
runasownerof
${
NEW
}
/go-ethereum git pull
else
info
"Download geth source code."
runasownerof
${
NEW
}
git clone https://github.com/ethereum/go-ethereum
fi
info
"Compiling geth"
runasownerof
${
NEW
}
/go-ethereum git checkout
${
geth_tag
}
chown
-R
bfa
${
NEW
}
/go-ethereum
info
"Compiling geth tagged as
${
geth_tag
}
"
runasownerof
${
NEW
}
/go-ethereum make all
HISBINDIR
=
$(
echo
~bfa/bin
)
install
--verbose
--owner
=
bfa
--group
=
bfa
--directory
${
HISBINDIR
}
...
...
@@ -197,6 +200,7 @@ function userconfig
cp
-p
${
BFAHOME
}
/
$envfile
${
BFAHOME
}
/bin/env
fi
PATH
=
${
PATH
}
:
${
BFAHOME
}
/bin
source
${
BFAHOME
}
/lib/versions
}
function
cronit
...
...
This diff is collapsed.
Click to expand it.
bin/installsolc.sh
+
5
−
1
View file @
512ca90f
...
...
@@ -3,21 +3,25 @@
trap
"exit 1"
ERR
set
-x
source
${
BFAHOME
}
/lib/versions
test
-d
~/new
||
mkdir
~/new
cd
~/new
if
[
-d
"solidity"
]
then
cd
solidity
git checkout develop
git pull
else
git clone
--recursive
https://github.com/ethereum/solidity.git
cd
solidity
fi
git checkout
${
solidity_tag
}
scripts/install_deps.sh
mkdir
-p
build
cd
build
cmake ..
cmake ..
-DUSE_Z3
=
OFF
make solc
install
--owner
=
bfa
--target-directory
=
$(
echo
~bfa
)
/bin solc/solc
This diff is collapsed.
Click to expand it.
lib/versions
0 → 100644
+
2
−
0
View file @
512ca90f
geth_tag=v1.8.27
solidity_tag=v0.5.0
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment