Skip to content
Open
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
30 changes: 30 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build iRecovery++

on:
push:
branches: ['**']
pull_request:
branches: ['**']

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y build-essential libusb-1.0-0-dev libreadline-dev pkg-config zip

- name: Build (make linux)
run: |
make linux CXX=g++

- name: Upload binary
uses: actions/upload-artifact@v4
with:
name: iRecovery-binary
path: ./bin/iRecovery