add logs on usrsctp_socket #211
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
timeout-minutes: 30 | |
strategy: | |
fail-fast: false | |
matrix: | |
target: | |
#- os: linux | |
# cpu: amd64 | |
#- os: linux | |
# cpu: i386 | |
- os: macos | |
cpu: amd64 | |
#- os: windows | |
# cpu: amd64 | |
nim: [1.6.16, devel] | |
include: | |
#- target: | |
# os: linux | |
# builder: ubuntu-22.04 | |
# shell: bash | |
- target: | |
os: macos | |
builder: macos-13 | |
shell: bash | |
#- target: | |
# os: windows | |
# builder: windows-2022 | |
# shell: msys2 {0} | |
defaults: | |
run: | |
shell: ${{ matrix.shell }} | |
name: '${{ matrix.target.os }}-${{ matrix.target.cpu }} (Nim ${{ matrix.nim }})' | |
runs-on: ${{ matrix.builder }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: true | |
#- name: MSYS2 (Windows amd64) | |
# if: ${{ matrix.target.os == 'windows' && matrix.target.cpu == 'amd64' }} | |
# uses: msys2/setup-msys2@v2 | |
# with: | |
# path-type: inherit | |
# install: >- | |
# base-devel | |
# git | |
# mingw-w64-x86_64-toolchain | |
- uses: iffy/install-nim@v3 | |
with: | |
version: ${{ matrix.nim }} | |
- name: Install deps | |
run: | | |
nimble install -dy | |
brew install automake | |
brew install awk | |
git clone https://github.com/sctplab/usrsctp.git | |
cd usrsctp | |
git checkout 01cc4e042e2235b29d9d489d89728a6f9ac063ed | |
awk -v n=1981 -v s='printf("=> %i %i\\n", sa->sa_family, name->sa_family);' 'NR == n {print s} {print}' /Users/runner/.nimble/pkgs/usrsctp-0.0.1/usrsctp/usrsctplib/user_socket.c > file.new | |
awk -v n=1873 -v s='printf("=> %i %i\\n", nam->sa_family, AF_CONN);' 'NR == n {print s} {print}' /Users/runner/.nimble/pkgs/usrsctp-0.0.1/usrsctp/usrsctplib/user_socket.c > file.new | |
mv file.new /Users/runner/.nimble/pkgs/usrsctp-0.0.1/usrsctp/usrsctplib/user_socket.c | |
cat -n /Users/runner/.nimble/pkgs/usrsctp-0.0.1/usrsctp/usrsctplib/user_socket.c | |
./bootstrap | |
./configure | |
make -d | |
cd .. | |
echo "-------------------------" | |
- name: Run tests | |
run: | | |
nim --version | |
nimble --version | |
nimble test |