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

Add @QtRoS's hex viewer app #9

Merged
merged 1 commit into from
Apr 9, 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
44 changes: 44 additions & 0 deletions .github/workflows/build_hex_viewer.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: "hex_viewer: Build and lint"

on:
push:
branches: [ master ]
paths:
- ".github/workflows/build_hex_viewer.yaml"
- "tools/apps/hex_viewer/**"
pull_request:
branches: [ master ]
paths:
- ".github/workflows/build_hex_viewer.yaml"
- "tools/apps/hex_viewer/**"
workflow_dispatch:

jobs:
build:
strategy:
matrix:
sdk-version: ["release", "dev", "rc"]
runs-on: ubuntu-latest
name: 'ufbt: Build for ${{ matrix.sdk-version }} Branch'
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Build with ufbt
uses: flipperdevices/[email protected]
id: build-app
with:
sdk-channel: ${{ matrix.sdk-version }}
app-dir: tools/apps/hex_viewer
- name: Upload app artifacts
uses: actions/upload-artifact@v4
with:
name: "flipperzero-hex_viewer-${{ matrix.sdk-version }}-${{ steps.build-app.outputs.suffix }}"
path: ${{ steps.build-app.outputs.fap-artifacts }}
- name: Lint sources
uses: flipperdevices/[email protected]
continue-on-error: true
with:
skip-setup: true
task: lint
app-dir: tools/apps/hex_viewer
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[submodule "subghz/apps/tpms"]
path = subghz/apps/tpms
url = https://github.com/prplecake/flipperzero-tpms
[submodule "tools/apps/hex_viewer"]
path = tools/apps/hex_viewer
url = https://github.com/prplecake/flipperzero-hex-viewer
1 change: 1 addition & 0 deletions tools/apps/hex_viewer
Submodule hex_viewer added at 1df1a1
Loading