Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

misc(ci): Add build GitHub actions workflow #139

Merged
merged 4 commits into from
Mar 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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