Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update workflow runners #85

Merged
merged 2 commits into from
Oct 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
@@ -5,6 +5,7 @@ on:
branches:
- '**'
pull_request:
branches:
- '**'

jobs:
@@ -67,9 +68,9 @@ jobs:
- name: make
run: make

MacOS12:
name: Build MacOS Monterey 12
runs-on: macos-12
MacOS13:
name: Build MacOS 13
runs-on: macos-13

steps:
- uses: actions/checkout@v3
@@ -79,10 +80,10 @@ jobs:
brew install libpcap
- name: make
run: make

MacOS11:
name: Build MacOS Big Sur 11
runs-on: macos-11
MacOS12:
name: Build MacOS Monterey 12
runs-on: macos-12

steps:
- uses: actions/checkout@v3
@@ -91,4 +92,4 @@ jobs:
brew update
brew install libpcap
- name: make
run: make
run: make
Loading