Skip to content

Commit

Permalink
Merge pull request #77 from antoniovazquezblanco/ci
Browse files Browse the repository at this point in the history
ci: add a build pipeline
  • Loading branch information
lab313ru authored Nov 15, 2024
2 parents c753842 + 693fad1 commit 17ba059
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Build
on:
pull_request:
push:

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ghidra:
- "11.1.2"
- "11.1.1"
- "11.1"
- "11.0.3"
- "11.0.2"
- "11.0.1"
- "11.0"
- "10.4"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Setup ghidra
uses: antoniovazquezblanco/[email protected]
with:
version: ${{ matrix.ghidra }}
- name: Build Ghidra extension (using gradle)
uses: gradle/gradle-build-action@v3
with:
gradle-version: 'current'
arguments: 'buildExtension'
- uses: actions/upload-artifact@v4
with:
name: psx_ldr_Ghidra_${{ matrix.ghidra }}
path: dist/*.zip

0 comments on commit 17ba059

Please sign in to comment.