Skip to content

Update workflow runners #15

Update workflow runners

Update workflow runners #15

Workflow file for this run

name: Build test
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
UbuntuLatest:
name: Build on Ubuntu-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install libpcap-dev
run: sudo apt install -y libpcap-dev
- name: make
run: make
Ubuntu2204:
name: Build on Ubuntu 22.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Install libpcap-dev
run: sudo apt install -y libpcap-dev
- name: make
run: make
Ubuntu2004:
name: Build on Ubuntu 20.04
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Install libpcap-dev
run: sudo apt install -y libpcap-dev
- name: make
run: make
MacOSLatest:
name: Build MacOS-latest
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Install libpcap
run: |
brew update
brew install libpcap
- name: make
run: make
MacOS14:
name: Build MacOS 14
runs-on: macos-14
steps:
- uses: actions/checkout@v3
- name: Install libpcap
run: |
brew update
brew install libpcap
- name: make
run: make
MacOS13:

Check failure on line 71 in .github/workflows/build-test.yml

View workflow run for this annotation

GitHub Actions / Build test

Invalid workflow file

The workflow is not valid. .github/workflows/build-test.yml (Line: 71, Col: 1): Unexpected value 'MacOS13' .github/workflows/build-test.yml (Line: 84, Col: 1): Unexpected value 'MacOS12'
name: Build MacOS 13
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- name: Install libpcap
run: |
brew update
brew install libpcap
- name: make
run: make
MacOS12:
name: Build MacOS Monterey 12
runs-on: macos-12
steps:
- uses: actions/checkout@v3
- name: Install libpcap
run: |
brew update
brew install libpcap
- name: make
run: make