Skip to content
Open
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
51 changes: 51 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: "Build"

on:
push:
branches:
- "main"
tags:
- 'v*'
workflow_dispatch:
jobs:
release:
name: Release - ${{ matrix.platform.os-name }}
strategy:
fail-fast: false
matrix:
platform:
- os-name: Linux-x86_64
runs-on: ubuntu-22.04
target: x86_64-unknown-linux-musl
- os-name: Linux-arm
runs-on: ubuntu-22.04
target: arm-unknown-linux-musleabihf
- os-name: Linux-arm
runs-on: ubuntu-22.04
target: armv7-unknown-linux-musleabihf
- os-name: Linux-i686
runs-on: ubuntu-22.04
target: i686-unknown-linux-musl
- os-name: Linux-aarch64
runs-on: ubuntu-22.04
target: aarch64-unknown-linux-musl
runs-on: ${{ matrix.platform.runs-on }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libudev-dev
- name: Build binary
uses: houseabsolute/actions-rust-cross@v1
with:
command: "build"
target: ${{ matrix.platform.target }}
args: "--locked --release"
strip: true
- name: Publish artifacts and release
uses: houseabsolute/actions-rust-release@v0
with:
executable-name: taptap
target: ${{ matrix.platform.target }}
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Added

- initial build chain implementation
- this Changelog.md file
- implementation of reconnect logic for both serial and tcp connections
- implementation of the TCP keepalive probing mechanism
- infrastructure even in observe mode - to output in JSON gateway and nodes addresses, version and barcodes
- persistent storage for infrastructure data

### Fixed

- fixed cli argument ---port can be used together with ---tcp
- Rust compilation warnings
- duplication of main.rs code
- invalid NodeTableResponse struct

### Changed

- format of the power report event message - this is breaking change
- Updated README to reflect recent implementation
- updated Cargo deps
- cli arguments dependencies and exclusions
- README to reflects new cli arguments
Loading