Skip to content

Commit

Permalink
Update simnode path (#593)
Browse files Browse the repository at this point in the history
* Update simnode script

* Update simonde script

* github action to upload benchmark commit

* github action to upload benchmark commit

* github action to upload benchmark commit

* github action to upload benchmark commit

* github action to upload benchmark commit

* github action to upload benchmark commit

* Pushing benchmark changes

* github action to upload benchmark commit

* github action to upload benchmark commit

Co-authored-by: haroldsphinx <haroldsphinx@users.noreply.github.com>
  • Loading branch information
2 people authored and cor committed Feb 5, 2022
1 parent 2591766 commit 68449a3
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 9 deletions.
24 changes: 16 additions & 8 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,22 @@ jobs:
id: branch-name
uses: tj-actions/branch-names@v5.1

# - name: Check for runtime changes
# env:
# BASE_BRANCH: ${{ github.event.pull_request.base.ref }}
# GITHUB_BRANCH_NAME: ${{ steps.branch-name.outputs.current_branch }}

# id: check_runtime
# if: contains( github.event.pull_request.labels.*.name, 'needs-benchmarks')
# run: .maintain/check_runtime.sh
- name: Check for runtime changes
env:
BASE_BRANCH: ${{ github.event.pull_request.base.ref }}
GITHUB_BRANCH_NAME: ${{ steps.branch-name.outputs.current_branch }}

id: check_runtime
if: contains( github.event.pull_request.labels.*.name, 'needs-benchmarks')
run: .maintain/check_runtime.sh

- uses: EndBug/add-and-commit@v8
with:
add: 'runtime/picasso'
message: 'Pushing benchmark changes'
push: "true"
new_branch: ${{ steps.branch-name.outputs.current_branch }}


- name: Benchmark Test
env:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ REPO=composablefi
SERVICE_NAME=composable
INSTALL_DIR=docker/
IMAGE_URL:=${REPO}/${SERVICE_NAME}
RELEASE_VERSION:=$(shell git tag --sort=committerdate | grep -E '^[0-9]' | tail -1)
RELEASE_VERSION:=$(shell git tag --sort=committerdate | grep -E '^v[0-9]' | tail -1)
CARGO_VERSION:=$(sed -i '' "s|^version =.*|version = "${VERSION}"|" node/Cargo.toml)
AUTO_UPDATE:=1

Expand Down

0 comments on commit 68449a3

Please sign in to comment.