Skip to content

Commit 225c704

Browse files
committed
Debug
1 parent c085d4d commit 225c704

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ env:
1313

1414
jobs:
1515
windows:
16+
if: false
1617
runs-on: windows-latest
1718
strategy:
1819
matrix:
@@ -36,6 +37,7 @@ jobs:
3637
run: .\test\build\frida-fs-tests.exe
3738

3839
macos-x86_64:
40+
if: false
3941
runs-on: macos-latest
4042
steps:
4143
- name: Check out repo
@@ -51,6 +53,7 @@ jobs:
5153
run: ./test/build/frida-fs-tests
5254

5355
linux-x86:
56+
if: false
5457
runs-on: ubuntu-latest
5558
steps:
5659
- name: Check out repo
@@ -71,6 +74,7 @@ jobs:
7174
run: ./test/build/frida-fs-tests
7275

7376
linux-x86_64:
77+
if: false
7478
runs-on: ubuntu-latest
7579
steps:
7680
- name: Check out repo
@@ -99,17 +103,19 @@ jobs:
99103
npm install
100104
cd test
101105
npm install
102-
CC="gcc-arm-linux-gnueabihf -march=armv7-a -mtune=cortex-a7 -mfpu=neon-vfpv4" \
103-
CXX="g++-arm-linux-gnueabihf -march=armv7-a -mtune=cortex-a7 -mfpu=neon-vfpv4" \
104-
./configure \
105-
--host=arm-linux-gnueabihf \
106-
-- \
107-
${{ env.GUM_OPTIONS }}
106+
./configure --host=arm-linux-gnueabihf -- ${{ env.GUM_OPTIONS }}
108107
make
109108
- name: Test
110109
run: qemu-arm -L /usr/arm-linux-gnueabihf ./test/build/frida-fs-tests
110+
- name: Upload failure artifacts
111+
if: ${{ failure() }}
112+
uses: actions/upload-artifact@v3
113+
with:
114+
name: build-failure-logs
115+
path: test/build/
111116

112117
linux-arm64:
118+
if: false
113119
runs-on: ubuntu-latest
114120
steps:
115121
- name: Check out repo

0 commit comments

Comments
 (0)