Skip to content

Initial commit of lwipovpn #7

Initial commit of lwipovpn

Initial commit of lwipovpn #7

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
build:
strategy:
matrix:
os: [ ubuntu-20.04, ubuntu-22.04, ubuntu-24.04 ]
compiler: [clang, gcc]
installdeps: sudo apt install -y ninja-build cmake

Check failure on line 13 in .github/workflows/build.yaml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/build.yaml (Line: 13, Col: 22): Unexpected value 'sudo apt install -y ninja-build cmake'
include:
- os: macos-latest
installdeps: brew install cmake
compiler: clang
runs-on: ${{matrix.os}}
name: "${{matrix.os}} - ${{matrix.compiler}}"
env:
CC: ${{ matrix.compiler }}
LSAN_OPTIONS: verbosity=1:log_threads=1
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install deps
run: ${{matrix.installdeps }}
- name: Run cmake
run: cmake -B lwipovpn-build
- name: Build with cmake
run: cmake --build lwipovpn-build