Skip to content

Commit

Permalink
Merge pull request #9 from prplecake/hex-viewer
Browse files Browse the repository at this point in the history
  • Loading branch information
prplecake authored Apr 9, 2024
2 parents 735d1af + 0da8d9d commit 0ac98bd
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 0 deletions.
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

0 comments on commit 0ac98bd

Please sign in to comment.