Skip to content

Commit acdfc51

Browse files
committed
WIP
1 parent d20a5fc commit acdfc51

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

.github/workflows/ci-linux.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,21 +37,17 @@ jobs:
3737
pwd
3838
ls -lha
3939
ls -lha ..
40-
41-
4240
4341
- name: Install Triton
4442
run: |
4543
echo "set(VCPKG_BUILD_TYPE release)" >> $VCPKG_INSTALLATION_ROOT/triplets/x64-linux.cmake
4644
vcpkg install triton
4745
48-
49-
- name: Start SSH Debug Session
50-
uses: lhotari/action-upterm@v1
51-
5246
- name: Build Ponce for all SDKs
5347
shell: bash
5448
run: |
49+
pwd
50+
ls -lha
5551
for version in $VERSIONS; do
5652
major="${version%%.*}"
5753
minor="${version##*.}"

.github/workflows/ci-macos.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ jobs:
2323
shell: bash
2424
run: |
2525
cd IDA_SDKs
26+
pwd
27+
ls -lha
2628
versions=()
2729
for f in idasdk*.zip; do
2830
if [[ "$f" =~ idasdk([0-9])([0-9])\.zip ]]; then
@@ -34,6 +36,9 @@ jobs:
3436
fi
3537
done
3638
echo "VERSIONS=${versions[*]}" >> $GITHUB_ENV
39+
pwd
40+
ls -lha
41+
ls -lha ..
3742
3843
- name: Install Triton (delete first two lines when Triton last port is in the CI)
3944
run: |
@@ -43,10 +48,15 @@ jobs:
4348
- name: Build Ponce for all SDKs
4449
shell: bash
4550
run: |
51+
pwd
52+
ls -lha
4653
for version in $VERSIONS; do
4754
major="${version%%.*}"
4855
minor="${version##*.}"
4956
sdkdir="./IDA_SDKs/idasdk${major}${minor}"
57+
pwd
58+
ls -lha
59+
ls -lha ./$sdkdir
5060
builddir="build_x64_${major}.${minor}"
5161
echo "Building for IDA SDK $major.$minor"
5262
cmake -S . -B $builddir -DIDASDK_ROOT_DIR="./$sdkdir" -DSTATICLIB=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE="$VCPKG_INSTALLATION_ROOT/scripts/buildsystems/vcpkg.cmake"

0 commit comments

Comments
 (0)