From da24503b8e36c8c11d499a404686ad5a035866a9 Mon Sep 17 00:00:00 2001 From: TT Date: Sat, 6 Feb 2021 10:50:16 +0900 Subject: [PATCH] add build workflow for osx --- .github/workflows/BuildOSX.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/BuildOSX.yml diff --git a/.github/workflows/BuildOSX.yml b/.github/workflows/BuildOSX.yml new file mode 100644 index 0000000..2b2568e --- /dev/null +++ b/.github/workflows/BuildOSX.yml @@ -0,0 +1,29 @@ +name: BuildOSX + +on: + push: + branches: + - osx + +jobs: + PC_Application_OSX: + runs-on: macos-latest + steps: + - uses: actions/checkout@v1 + + - name: Install dependencies + run: | + brew install qt libusb + + - name: Build application + run: | + cd Software/PC_Application + qmake + make -j9 + shell: bash + + - name: Upload artifact + uses: actions/upload-artifact@v2 + with: + name: Application_OSX + path: Software/PC_Application/VNA.app