From baf08e27bd84dd30c8efa9d47229644fdc625775 Mon Sep 17 00:00:00 2001 From: Jan Klass Date: Tue, 12 Mar 2024 17:50:16 +0100 Subject: [PATCH] misc(ci): Add build GitHub actions workflow Replaces (not used anymore) Travis-CI. --- .github/workflows/build.yml | 17 +++++++++++++++++ .travis.yml | 12 ------------ 2 files changed, 17 insertions(+), 12 deletions(-) create mode 100644 .github/workflows/build.yml delete mode 100644 .travis.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..acc6c34 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,17 @@ +name: Build +on: [push, pull_request] +env: + buildDir: ${{ github.workspace }}/build/ + +jobs: + build: + runs-on: macos-latest + steps: + - uses: actions/checkout@v4 + with: + submodules: 'recursive' + - name: Build + run: | + gem install --verbose xcpretty + mkdir ${PWD}/__build__ + set -o pipefail && xcodebuild -configuration Release -target "MumbleKit (iOS)" CONFIGURATION_BUILD_DIR="${PWD}/__build__" | xcpretty diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 66551d1..0000000 --- a/.travis.yml +++ /dev/null @@ -1,12 +0,0 @@ -os: - - osx - -osx_image: xcode8.1 -language: generic - -before_install: - - gem install --verbose xcpretty - -script: - - mkdir ${PWD}/__build__ - - set -o pipefail && xcodebuild -configuration Release -target "MumbleKit (iOS)" CONFIGURATION_BUILD_DIR="${PWD}/__build__" | xcpretty