Skip to content

Commit

Permalink
Initial version from github actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
fmacleal committed Jun 10, 2024
1 parent d7061fc commit 10c4875
Show file tree
Hide file tree
Showing 6 changed files with 71 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/build_and_test.yml
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
3 changes: 3 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .idea/rootstock-integration-tests.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 10c4875

Please sign in to comment.