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

Replace builds.sr.ht with GitHub Actions #118

Merged
merged 2 commits into from
Nov 21, 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
21 changes: 0 additions & 21 deletions .builds/alpine.yml

This file was deleted.

31 changes: 31 additions & 0 deletions .github/workflows/firmware-builds.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
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: |
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
2 changes: 1 addition & 1 deletion unicore-mx
Submodule unicore-mx updated from 5969df to c80139