Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

L1-285 Bumped runtime version #1826

Merged
merged 3 commits into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/scripts/run_consensus.sh
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ function run_containers() {
for index in $(seq 0 "${authorities_count}"); do
containers+=("Node${index}")
done
docker-compose $(get_compose_file_list "${docker_compose_file}" "${override_file}") up -d "${containers[@]}"
docker compose $(get_compose_file_list "${docker_compose_file}" "${override_file}") up -d "${containers[@]}"
}

function archive_logs() {
Expand All @@ -137,7 +137,7 @@ function archive_logs() {
pushd $(mktemp -d) > /dev/null
for index in $(seq 0 "${node_count}"); do
echo "Archiving "Node${index}" logs..."
docker-compose ${compose_file_list} logs --no-color --no-log-prefix "Node${index}" > "Node${index}.log"
docker compose ${compose_file_list} logs --no-color --no-log-prefix "Node${index}" > "Node${index}.log"
done
tar -czf "${tarball_output}" Node*
popd > /dev/null
Expand Down
28 changes: 0 additions & 28 deletions .github/workflows/on-pull-request-change.yml

This file was deleted.

10 changes: 10 additions & 0 deletions .github/workflows/on-pull-request-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,16 @@ concurrency:
cancel-in-progress: true

jobs:
check-pr-title:
name: Check PR title
runs-on: ubuntu-20.04
steps:
- name: Check PR title
uses: Cardinal-Cryptography/github-actions/check-pr-title@v7
with:
pr-title: ${{ github.event.pull_request.title }}
regexp: '(A0|L1)-[0-9]+'

run-liminal-ci-cd:
if: contains(github.event.pull_request.labels.*.name, 'liminal-CI')
name: Run liminal checks on PR
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion bin/node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aleph-node"
version = "0.13.3"
version = "0.13.4"
description = "Aleph node binary"
build = "build.rs"
license = "GPL-3.0-or-later"
Expand Down
2 changes: 1 addition & 1 deletion bin/runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aleph-runtime"
version = "0.13.3"
version = "0.13.4"
license = "GPL-3.0-or-later"
authors.workspace = true
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion bin/runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("aleph-node"),
impl_name: create_runtime_str!("aleph-node"),
authoring_version: 1,
spec_version: 73,
spec_version: 74,
impl_version: 1,
apis: RUNTIME_API_VERSIONS,
transaction_version: 18,
Expand Down
Loading