mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-20 12:07:05 +08:00
fix cmake CI for new script tests
This commit is contained in:
parent
d8e943e03c
commit
950afc4d04
3 changed files with 24 additions and 4 deletions
7
.github/workflows/macos.yml
vendored
7
.github/workflows/macos.yml
vendored
|
@ -127,7 +127,12 @@ jobs:
|
|||
if [ -f requirements.txt ]; then python3 -m pip install -r requirements.txt; fi
|
||||
|
||||
- name: Prepare Build Folders
|
||||
run: mkdir -p client/build
|
||||
run: |
|
||||
mkdir -p client/build
|
||||
ln -s ../cmdscripts client/build/
|
||||
ln -s ../luascripts client/build/
|
||||
ln -s ../pyscripts client/build/
|
||||
ln -s ../lualibs client/build/
|
||||
|
||||
- name: Initiate cmake environment
|
||||
run: cmake ..
|
||||
|
|
7
.github/workflows/ubuntu.yml
vendored
7
.github/workflows/ubuntu.yml
vendored
|
@ -101,7 +101,12 @@ jobs:
|
|||
if [ -f requirements.txt ]; then python3 -m pip install -r requirements.txt; fi
|
||||
|
||||
- name: Prepare Build Folders
|
||||
run: mkdir -p client/build
|
||||
run: |
|
||||
mkdir -p client/build
|
||||
ln -s ../cmdscripts client/build/
|
||||
ln -s ../luascripts client/build/
|
||||
ln -s ../pyscripts client/build/
|
||||
ln -s ../lualibs client/build/
|
||||
|
||||
- name: Initiate cmake environment
|
||||
run: cmake ..
|
||||
|
|
14
.github/workflows/windows.yml
vendored
14
.github/workflows/windows.yml
vendored
|
@ -71,7 +71,12 @@ jobs:
|
|||
run: make clean
|
||||
|
||||
- name: Prepare cmake build folders
|
||||
run: mkdir -p client/build
|
||||
run: |
|
||||
mkdir -p client/build
|
||||
ln -s ../cmdscripts client/build/
|
||||
ln -s ../luascripts client/build/
|
||||
ln -s ../pyscripts client/build/
|
||||
ln -s ../lualibs client/build/
|
||||
|
||||
- name: Initiate cmake environment
|
||||
run: cmake -G"MSYS Makefiles" ..
|
||||
|
@ -151,7 +156,12 @@ jobs:
|
|||
run: make clean
|
||||
|
||||
- name: Prepare cmake build folders
|
||||
run: mkdir -p client/build
|
||||
run: |
|
||||
mkdir -p client/build
|
||||
ln -s ../cmdscripts client/build/
|
||||
ln -s ../luascripts client/build/
|
||||
ln -s ../pyscripts client/build/
|
||||
ln -s ../lualibs client/build/
|
||||
|
||||
- name: Initiate cmake environment
|
||||
run: cmake ..
|
||||
|
|
Loading…
Add table
Reference in a new issue