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 12, 2024
1 parent b59f033 commit baf08e2
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 12 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -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
12 changes: 0 additions & 12 deletions .travis.yml

This file was deleted.

0 comments on commit baf08e2

Please sign in to comment.