Skip to content

Commit

Permalink
Add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Jun 13, 2024
1 parent 26b403b commit 6077c9b
Showing 1 changed file with 61 additions and 0 deletions.
61 changes: 61 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
name: CI

on:
push:
branches:
# - master
# pull_request:
# schedule:
# - cron: '0 0 * * 1'

jobs:
watchos:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Building
run: make wch
- uses: actions/upload-artifact@v4
with:
name: fsmon-wch
path: fsmon-wch
ios:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Dependencies
run: |
git clone https://github.com/razum2um/ldid
cd ldid && make && cp -f ldid ldid2 /usr/local/bin
- name: Building
run: make ios
- uses: actions/upload-artifact@v4
with:
name: fsmon-ios
path: fsmon-ios
macos:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Building
run: make macos
- uses: actions/upload-artifact@v4
with:
name: fsmon-macos
path: fsmon-macos
linux:
name: linux
continue-on-error: true
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Building
run: make && mv fsmon fsmon-linux
- uses: actions/upload-artifact@v4
with:
name: fsmon-linux
path: fsmon-linux

0 comments on commit 6077c9b

Please sign in to comment.