Skip to content

Commit

Permalink
Applying some other suggestions from review
Browse files Browse the repository at this point in the history
  • Loading branch information
fmacleal committed Aug 8, 2024
1 parent 59502c2 commit 3f58163
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 4 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,3 +103,25 @@ jobs:
run: |
echo "RIT Status = ${{ steps.test-rit-action.outputs.status }}"
echo "RIT Message = ${{ steps.test-rit-action.outputs.message }}"
publish-rit-action-tag:
needs: test-rit-action
name: Publish RIT Action tag
runs-on: ubuntu-latest
timeout-minutes: 60
if: github.ref == 'refs/heads/main'

steps:
- name: Checkout
id: checkout
uses: actions/checkout@v4

- name: Create GitHub Release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: rootstock-integration-tests@v1
release_name: Release rootstock-integration-tests@v1
draft: false
prerelease: false
3 changes: 0 additions & 3 deletions container-action/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@ RUN apt-get -y install "openjdk-$JAVA_VERSION-jdk"

ENV JAVA_HOME="/usr/lib/jvm/java-$JAVA_VERSION-openjdk-amd64"

RUN export JAVA_HOME="$JAVA_HOME" \
&& export PATH="$JAVA_HOME:$PATH"

# -- bitcoind ---------------------------------------------------------
ENV BITCOIN_VERSION 0.18.1

Expand Down
2 changes: 1 addition & 1 deletion container-action/scripts/configure_rit_locally.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ if [ $# -ne 1 ] || [ -z "${1:-}" ]; then
fi
POWPEG_VERSION=$1
shift
echo "POWPEG_VERSION received as parameter: $1"
echo "POWPEG_VERSION received as parameter: $POWPEG_VERSION"

read -r -d '' SETTINGS_RIT <<EOF
POWPEG_NODE_JAR_PATH=/usr/src/powpeg/build/libs/federate-node-$POWPEG_VERSION-all.jar
Expand Down

0 comments on commit 3f58163

Please sign in to comment.