Skip to content

Commit

Permalink
Replace builds.sr.ht with GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanthom committed Nov 21, 2024
1 parent 050c9d7 commit 87a87c0
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 23 deletions.
21 changes: 0 additions & 21 deletions .builds/alpine.yml

This file was deleted.

32 changes: 32 additions & 0 deletions .github/workflows/firmware-builds.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Firmware builds

on:
push:
branches: [ master ]
path-ignore:
- 'docs/**'
- 'contrib/**'
pull-request:
path-ignore:
- 'docs/**'
- 'contrib/**'

jobs:
default:
runs-on: ubuntu-24.04
steps:
- name: Fetch Sources
uses: actions/checkout@v4
with:
submodules: true
- name: Install build dependencies
run: sudo apt-get install -y gcc-arm-none-eabi libnewlib-arm-none-eabi make
- name: Build
run: |
cd dirtyjtag
make PLATFORM=bluepill
make PLATFORM=stlinkv2
make PLATFORM=stlinkv2dfu
make PLATFORM=baite
make PLATFORM=olimexstm32h103
make PLATFORM=stlinkv2white
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# DirtyJTAG

[![builds.sr.ht status](https://builds.sr.ht/~jeanthomas/dirtyjtag.svg)](https://builds.sr.ht/~jeanthomas/dirtyjtag?)

DirtyJTAG is a JTAG adapter firmware for $2 ST-Link clones and generic STM32 development boards ("blue pill"/"black pill" STM32F101 and STM32F103 based ARM boards). The DirtyJTAG project was meant to be an alternative to the obsolete (but cheap) LPT Wiggler cables, and other expensive USB JTAG probes.

DirtyJTAG is dirty and dirt cheap, but is not fast nor a perfect implementation of the JTAG protocol. Yet it is around 1k lines of code, making it easily understandable and hackable.
Expand Down

0 comments on commit 87a87c0

Please sign in to comment.