Skip to content

Commit

Permalink
ci: Try something
Browse files Browse the repository at this point in the history
  • Loading branch information
oleavr committed Jan 31, 2024
1 parent 6d2f25e commit 75effa4
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ jobs:
runner: ubuntu-latest
fail-fast: false
runs-on: ${{ matrix.runner }}
env:
FRIDA_MESON_OPTIONS: "-Dgumpp=enabled -Dgumjs=enabled -Ddevkits=gum,gumjs"
steps:
- name: Check out repo
uses: actions/checkout@v4
Expand All @@ -89,8 +91,14 @@ jobs:
with:
arch: ${{ matrix.arch }}
- name: Build
if: ${{ matrix.os == 'windows' }}
run: |
.\configure -- $FRIDA_MESON_OPTIONS
.\make
- name: Build
if: ${{ matrix.os != 'windows' }}
run: |
./configure -- "-Dgumpp=enabled" "-Dgumjs=enabled" "-Ddevkits=gum,gumjs"
./configure -- $Env:FRIDA_MESON_OPTIONS
make
- name: Upload Gum devkit
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 75effa4

Please sign in to comment.