Skip to content

Commit

Permalink
ci: add a crossbuild workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kevans91 committed Nov 16, 2023
1 parent 17d443f commit 9af4fa2
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/crossbuild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Cross-build openrsync
on:
push:
branches: ['*']
pull_request:
types: [opened, reopened]
permissions:
contents: read
jobs:
build:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04, macos-latest]
include:
- os: ubuntu-20.04
- os: ubuntu-22.04
- os: macos-latest
steps:
- uses: actions/checkout@v3
- name: configure
run: ./configure
- name: build
run: make

0 comments on commit 9af4fa2

Please sign in to comment.