-
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.
Initial version from github actions workflow
- Loading branch information
Showing
6 changed files
with
71 additions
and
0 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,39 @@ | ||
name: Build and Test | ||
|
||
on: | ||
push: | ||
branches: | ||
- '**' | ||
|
||
jobs: | ||
building-rskj-and-powpeg-node: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: openjdk:8-jdk | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup System Tools | ||
run: | | ||
apt update -y | ||
apt install -y curl | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- uses: actions/checkout@v4 | ||
- name: Pull rskj | ||
run: | | ||
git clone https://github.com/rsksmart/rskj.git rskj | ||
cd rskj | ||
./configure.sh && chmod +x gradlew | ||
./gradlew --no-daemon clean build -x test | ||
- uses: actions/checkout@v4 | ||
- name: Pull powpeg-node | ||
run: | | ||
git clone https://github.com/rsksmart/powpeg-node.git powpeg-node | ||
mkdir -p powpeg-node/rskj | ||
cp ./rskj/rskj-core/build/libs/rskj-core-*-all.jar powpeg-node/rskj | ||
# cd powpeg-node | ||
# ./configure.sh && chmod +x gradlew | ||
# ./gradlew --no-daemon clean build |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.