Skip to content

Commit

Permalink
[bug] #3454: make LTS the default
Browse files Browse the repository at this point in the history
Signed-off-by: Marin Veršić <marin.versic101@gmail.com>
  • Loading branch information
mversic committed May 8, 2023
1 parent cbc3bfe commit 2ba7309
Show file tree
Hide file tree
Showing 16 changed files with 413 additions and 521 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/iroha2-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
run: |
sleep 10s
echo "wait to other workflow"
- uses: convictional/trigger-workflow-and-wait@v1.6.2
- uses: convictional/trigger-workflow-and-wait@v1.6.5
with:
owner: soramitsu
repo: iroha2-longevity-load-rs
Expand Down
22 changes: 20 additions & 2 deletions .github/workflows/iroha2-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,28 @@ jobs:
cache-from: type=gha
cache-to: type=gha,mode=max

load-rs:
configs:
runs-on: ubuntu-latest
container:
image: hyperledger/iroha2-ci:nightly-2022-12-22
steps:
- uses: actions/checkout@v3
ref: iroha2-dev
- name: Setup git config
run: |
git config user.name "GitHub Actions Bot"
git config user.email "<>"
- name: Update configs
run: |
./scripts/update_configs.sh lts
./scripts/update_configs.sh stable
- name: Commit config changes
run: |
git commit -am "[documentation]: Update lts/stable configs following a release" --signoff
git push origin iroha2-dev
load-rs:
runs-on: ubuntu-latest
steps:
- name: Get tag from branch name
run: |
Expand All @@ -67,7 +85,7 @@ jobs:
run: |
sleep 10s
echo "wait to finish other workflow"
- uses: convictional/trigger-workflow-and-wait@v1.6.2
- uses: convictional/trigger-workflow-and-wait@v1.6.5
with:
owner: soramitsu
repo: iroha2-longevity-load-rs
Expand Down
5 changes: 2 additions & 3 deletions cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,8 @@ async fn main() -> Result<(), color_eyre::Report> {
iroha_logger::warn!("The configuration parameter `DISABLE_PANIC_TERMINAL_COLORS` is deprecated. Set `TERMINAL_COLORS=false` instead. ")
}
iroha_logger::info!(
git_commit_sha = env!("VERGEN_GIT_SHA"),
"Hyperledgerいろは2にようこそ!(translation) Welcome to Hyperledger Iroha {}!",
env!("CARGO_PKG_VERSION")
version = %env!("CARGO_PKG_VERSION"), git_commit_sha = env!("VERGEN_GIT_SHA"),
"Hyperledgerいろは2にようこそ!(translation) Welcome to Hyperledger Iroha!"
);

let genesis = if let Some(genesis_path) = &args.genesis_path {
Expand Down
Loading

0 comments on commit 2ba7309

Please sign in to comment.