Skip to content

fix bad block generation for too many new accounts in full blocks #11

fix bad block generation for too many new accounts in full blocks

fix bad block generation for too many new accounts in full blocks #11

Workflow file for this run

name: Release
on:
workflow_dispatch:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name : Meson Test
run : DOCKER_BUILDKIT=1 docker build . --file dockerfiles/run_tests --progress plain
- name: Docker Build
run: DOCKER_BUILDKIT=1 docker build . -f dockerfiles/build_linux --output build
- name: Docker Build Windows
run: DOCKER_BUILDKIT=1 docker build . -f dockerfiles/build_windows --output ./build/windows
- name : Docker Build MacOS
run : DOCKER_BUILDKIT=1 docker build . -f dockerfiles/build_macos --output ./build/aarch64-macos
- name: Call Docker
uses: peter-evans/repository-dispatch@v3
with:
event-type: docker
- name: Get version
id: get_version
run: |
echo "VERSION=$(grep 'version :' meson.build | cut -d "'" -f 2)" >> $GITHUB_ENV
- name: Release
uses: softprops/action-gh-release@v2.2.1
with:
tag_name: ${{ env.VERSION }}
generate_release_notes: true
make_latest: true
files: |
./build/aarch64-macos/wart-wallet-aarch64
./build/aarch64-macos/wart-node-aarch64
./build/windows/wart-wallet-windows.exe
./build/windows/wart-node-windows.exe
./build/wart-node-linux
./build/wart-wallet-linux