Skip to content

Commit

Permalink
CITest: remove useless git clone
Browse files Browse the repository at this point in the history
  • Loading branch information
imbillow committed Jun 25, 2024
1 parent 01b083f commit 2e3f168
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/CITest.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Run Test
on:
on:
push:
paths-ignore:
- ".gitignore"
- "docs/**"
- "ChangeLog"
- "ChangeLog"
- "CREDITS.TXT"
- "COMPILE.TXT"
- "COMPILE_MSVC.TXT"
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
python-version: '3.9',
build-system: 'cmake',
enable-asan: 'OFF'
}
}
- {
name: 'ubuntu-22.04 x64 python3.11 cmake',
os: ubuntu-22.04,
Expand Down Expand Up @@ -88,7 +88,6 @@ jobs:
export LD_LIBRARY_PATH=`pwd`/tests/:$LD_LIBRARY_PATH
wget https://github.com/groundx/capstonefuzz/raw/master/corpus/corpus-libFuzzer-capstone_fuzz_disasmnext-latest.zip
unzip -q corpus-libFuzzer-capstone_fuzz_disasmnext-latest.zip -d suite/fuzz
git clone https://git.cryptomilk.org/projects/cmocka.git suite/cstest/cmocka
chmod +x suite/cstest/build_cstest.sh
- name: make
Expand Down Expand Up @@ -145,6 +144,11 @@ jobs:
python suite/cstest/cstest_report.py -D -f suite/cstest/issues.cs
python suite/cstest/cstest_report.py -D -f tests/cs_details/issue.cs
- name: download deps of cstest (make)
if: startsWith(matrix.config.build-system, 'make')
run: |
git clone https://git.cryptomilk.org/projects/cmocka.git suite/cstest/cmocka
- name: cstest (make)
if: startsWith(matrix.config.build-system, 'make')
run: |
Expand Down Expand Up @@ -220,7 +224,7 @@ jobs:

- name: '🛠️ Win MSVC 64 setup'
if: contains(matrix.config.name, 'MSVC 64')
uses: ilammy/msvc-dev-cmd@v1
uses: ilammy/msvc-dev-cmd@v1
with:
arch: 'x64'

Expand Down

0 comments on commit 2e3f168

Please sign in to comment.