mirror of
https://github.com/RfidResearchGroup/ChameleonUltra.git
synced 2026-06-24 21:21:53 +00:00
cf00761902
* Implement MF1_ENC_NESTED_ACQUIRE in firmware * Implement MF1_ENC_NESTED_ACQUIRE in software + fix code formatter * Remove xz and pthreads from sources, use CMake FetchContent * Update changelog * lzma.h * Update CMakeLists.txt * Update CMakeLists.txt * Probably fix workflow taking wrong commit for building * Fix CMake building tools into bin/Debug on Windows * Added cmd for fetching all slots nicks (without 16 commands) * Fix type and use temp directory instead cwd (https://github.com/RfidResearchGroup/ChameleonUltra/pull/261) * Fix endian for mfu_read_emu_counter_data and mfu_write_emu_counter_data * Fix --key interpreted as list
45 lines
1.7 KiB
YAML
45 lines
1.7 KiB
YAML
name: PR handler
|
|
on:
|
|
pull_request_target:
|
|
|
|
jobs:
|
|
firmware_pipeline:
|
|
name: Build Firmware
|
|
permissions:
|
|
packages: write
|
|
contents: read
|
|
uses: ./.github/workflows/build_firmware.yml
|
|
with:
|
|
checkout-sha: "${{ github.event.pull_request.head.sha }}"
|
|
client_pipeline:
|
|
name: Build Firmware
|
|
uses: ./.github/workflows/build_client.yml
|
|
with:
|
|
checkout-sha: "${{ github.event.pull_request.head.sha }}"
|
|
comment:
|
|
runs-on: ubuntu-latest
|
|
name: Comment on PR
|
|
needs:
|
|
- firmware_pipeline
|
|
- client_pipeline
|
|
permissions:
|
|
pull-requests: write
|
|
steps:
|
|
- uses: marocchino/sticky-pull-request-comment@v2
|
|
with:
|
|
message: |
|
|
# Built artifacts for commit ${{ github.event.pull_request.head.sha }}
|
|
|
|
## Firmware
|
|
|
|
- [Ultra APP DFU Package](https://nightly.link/${{ github.repository }}/actions/runs/${{ github.run_id }}/ultra-dfu-app.zip)
|
|
- [Ultra binaries](https://nightly.link/${{ github.repository }}/actions/runs/${{ github.run_id }}/ultra-firmware.zip)
|
|
- [Lite APP DFU Package](https://nightly.link/${{ github.repository }}/actions/runs/${{ github.run_id }}/lite-dfu-app.zip)
|
|
- [Lite binaries](https://nightly.link/${{ github.repository }}/actions/runs/${{ github.run_id }}/lite-firmware.zip)
|
|
|
|
## Client
|
|
|
|
- [Linux](https://nightly.link/${{ github.repository }}/actions/runs/${{ github.run_id }}/client-linux.zip)
|
|
- [macOS](https://nightly.link/${{ github.repository }}/actions/runs/${{ github.run_id }}/client-macos.zip)
|
|
- [Windows](https://nightly.link/${{ github.repository }}/actions/runs/${{ github.run_id }}/client-windows.zip)
|