Skip to content

Commit

Permalink
Merge branch 'Ziemas:main' into patch-3
Browse files Browse the repository at this point in the history
  • Loading branch information
israpps authored Apr 25, 2024
2 parents 56546e1 + f4556b6 commit 655b007
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 0 deletions.
57 changes: 57 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: Publish unstable builds

on:
workflow_dispatch:
pull_request:
push:

jobs:
build_and_publish:
runs-on: ubuntu-latest
strategy:
matrix:
ghidra: ["11.0.3"]
steps:
- name: Checkout
uses: actions/checkout@v1

- name: Setup Java
uses: actions/setup-java@v1
with:
java-version: "17"
java-package: jdk
architecture: x64

- name: Setup Ghidra
uses: er28-0652/setup-ghidra@b53614dada0a16e3c342277caae905b96d803109
with:
version: ${{ matrix.ghidra }}

- name: Test
uses: gradle/gradle-build-action@v2
with:
gradle-version: 7.6
arguments: test -PGHIDRA_INSTALL_DIR=${{ env.GHIDRA_INSTALL_DIR }}

- name: Build Extension
uses: gradle/gradle-build-action@v2
with:
gradle-version: 7.6
arguments: buildExtension -PGHIDRA_INSTALL_DIR=${{ env.GHIDRA_INSTALL_DIR }}

- name: Upload variants artifact ELF
uses: actions/upload-artifact@v4
with:
name: ghidra_irx
path: |
dist/*.zip
- name: Release
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main'
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: dist/*.zip
tag: "latest"
overwrite: true
file_glob: true
17 changes: 17 additions & 0 deletions data/modules.list
Original file line number Diff line number Diff line change
Expand Up @@ -507,6 +507,23 @@ sdsq 012 sceSdSqGetCompTableDataByIndex
sdsq 013 sceSdSqGetNoteOnEventByPolyKeyPress
sdsq 014 sceSdSqCopyMidiData
sdsq 015 sceSdSqCopySongData
secrman 004 SecrSetMcCommandHandler
secrman 005 SecrSetMcDevIDHandler
secrman 006 SecrAuthCard
secrman 007 SecrResetAuthCard
secrman 008 SecrCardBootHeader
secrman 009 SecrCardBootBlock
secrman 010 SecrCardBootFile
secrman 011 SecrDiskBootHeader
secrman 012 SecrDiskBootBlock
secrman 013 SecrDiskBootFile
secrman 014 SecrDownloadHeader
secrman 015 SecrDownloadBlock
secrman 016 SecrDownloadFile
secrman 017 SecrDownloadGetKbit
secrman 018 SecrDownloadGetKc
secrman 019 SecrDownloadGetICVPS2
secrman 020 SecrAuthDongle
sifcmd 004 sceSifInitCmd
sifcmd 005 sceSifExitCmd
sifcmd 006 sceSifGetSreg
Expand Down

0 comments on commit 655b007

Please sign in to comment.