diff --git a/.github/workflows/build_macosx.yml b/.github/workflows/build_macosx.yml new file mode 100644 index 0000000..ed3ac9d --- /dev/null +++ b/.github/workflows/build_macosx.yml @@ -0,0 +1,18 @@ +name: Build MacOSX +on: + push: + branches: + - master +jobs: + build: + runs-on: runs-on: macOS-latest + steps: + - uses: actions/checkout@v2 + - id: INSTALL_ADDITIONAL_BUILD_DEPENDENCIES + run: brew install librtlsdr libusb + - id: CONFIGURE + run: ./configure + - id: MAKE + run: make + - id: TEST + run: make test diff --git a/.github/workflows/build.yml b/.github/workflows/build_ubuntu.yml similarity index 94% rename from .github/workflows/build.yml rename to .github/workflows/build_ubuntu.yml index cd55070..84a7c09 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build_ubuntu.yml @@ -1,4 +1,4 @@ -name: Build +name: Build Ubuntu on: push: branches: