Skip to content

updates to match changes in work contract library #21

updates to match changes in work contract library

updates to match changes in work contract library #21

Workflow file for this run

name: network
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
defaults:
run:
shell: bash
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
compiler: [ g++-13 ]
include:
- os: ubuntu-latest
compiler: g++-13
target: Linux
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: build
env:
CC: gcc-13
CXX: g++-13
run: |
sudo apt update
sudo apt install gcc-13 g++-13
mkdir build
cd build
cmake ..
make
./bin/network/test_virtual_network_interface
./bin/network/test_tcp_socket
./bin/network/test_udp_socket
./bin/network/test_send_completion