Skip to content

Commit

Permalink
misc(ci): Add build GitHub actions workflow
Browse files Browse the repository at this point in the history
Replaces (not used anymore) Travis-CI.
  • Loading branch information
Kissaki committed Mar 13, 2024
1 parent 044592b commit 5734a95
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 11 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
11 changes: 0 additions & 11 deletions .travis.yml

This file was deleted.

0 comments on commit 5734a95

Please sign in to comment.