Skip to content

Commit

Permalink
remove cloning usrsctp
Browse files Browse the repository at this point in the history
  • Loading branch information
lchenut committed Sep 27, 2024
1 parent 81e13a5 commit 303572b
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,17 +66,17 @@ jobs:
- name: Install deps
run: |
nimble install -dy
git clone https://github.com/sctplab/usrsctp.git
cd usrsctp
mkdir cmake_install
mkdir cmake_build
git checkout 01cc4e042e2235b29d9d489d89728a6f9ac063ed
cmake --version
ls -la
cmake -S . -B cmake_build -DCMAKE_BUILD_TYPE=Debug -DCMAKE_POSITION_INDEPENDENT_CODE=ON -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON -Dsctp_debug=ON -Dsctp_invariants=ON -Dsctp_inet6=ON -Dsctp_inet=ON -Dsctp_build_programs=ON -Dsctp_build_fuzzer=OFF -DCMAKE_INSTALL_PREFIX=cmake_install -DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_SYSTEM_PROCESSOR=x86_64 .
echo "install done"
cmake --build cmake_build --parallel 2 --config Debug --target install --clean-first --verbose
cd ..
# git clone https://github.com/sctplab/usrsctp.git
# cd usrsctp
# mkdir cmake_install
# mkdir cmake_build
# git checkout 01cc4e042e2235b29d9d489d89728a6f9ac063ed
# cmake --version
# ls -la
# cmake -S . -B cmake_build -DCMAKE_BUILD_TYPE=Debug -DCMAKE_POSITION_INDEPENDENT_CODE=ON -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON -Dsctp_debug=ON -Dsctp_invariants=ON -Dsctp_inet6=ON -Dsctp_inet=ON -Dsctp_build_programs=ON -Dsctp_build_fuzzer=OFF -DCMAKE_INSTALL_PREFIX=cmake_install -DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_SYSTEM_PROCESSOR=x86_64 .
# echo "install done"
# cmake --build cmake_build --parallel 2 --config Debug --target install --clean-first --verbose
# cd ..
- name: Run tests
run: |
Expand Down

0 comments on commit 303572b

Please sign in to comment.