Skip to content

Commit

Permalink
misc(ci): Add build GitHub actions workflow (#139)
Browse files Browse the repository at this point in the history
Replaces (not used anymore) Travis-CI.
  • Loading branch information
Kissaki authored Mar 13, 2024
2 parents 00fde50 + faa1340 commit b3218fa
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 15 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
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'
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '13.1'
- name: Build
run: |
gem install --verbose xcpretty
set -o pipefail && xcodebuild -UseModernBuildSystem=NO -configuration Release -target "Mumble" CONFIGURATION_BUILD_DIR="${PWD}/__build__" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO -sdk iphoneos | xcpretty
4 changes: 2 additions & 2 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[submodule "MumbleKit"]
path = MumbleKit
url = http://github.com/mumble-voip/mumblekit.git
url = https://github.com/mumble-voip/mumblekit.git
[submodule "Dependencies/fmdb"]
path = Dependencies/fmdb
url = http://github.com/ccgus/fmdb.git
url = https://github.com/ccgus/fmdb.git
11 changes: 0 additions & 11 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion BuildConfig/Base.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

ARCHS = armv7 arm64
ARCHS = arm64
SDKROOT = iphoneos

MACOSX_DEPLOYMENT_TARGET = 10.7
Expand Down

0 comments on commit b3218fa

Please sign in to comment.