Skip to content

Commit

Permalink
Merge pull request #26 from SmileyAG/ci
Browse files Browse the repository at this point in the history
CI: monthly build, ability to manually trigger GitHub Actions for specific Ghidra versions
  • Loading branch information
ubfx authored Sep 18, 2024
2 parents 0f8166e + a702c12 commit a9edd7a
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
name: Build
on: [push, pull_request, workflow_dispatch]
on:
push:
pull_request:
workflow_dispatch:
inputs:
ghidra_version:
description: 'Specify the Ghidra version(s) you want to build for (e.g. "latest", "11.0")'
required: true
default: '"latest"'
schedule:
- cron: '0 0 1 * *' # Monthly
permissions:
contents: write

Expand All @@ -8,15 +18,9 @@ jobs:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
ghidra:
- "11.1.2"
- "11.1.1"
- "11.1"
- "11.0.3"
- "11.0.2"
- "11.0.1"
- "11.0"
ghidra: ${{ fromJSON(format('[{0}]', inputs.ghidra_version || '"latest","11.1.2","11.1.1","11.1","11.0.3","11.0.2","11.0.1","11.0"')) }}

steps:
- name: Clone Repository
Expand Down

0 comments on commit a9edd7a

Please sign in to comment.