Skip to content

Disable Force Touch Lock #514

Disable Force Touch Lock

Disable Force Touch Lock #514

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Clone Acidanthera/MacKernelSDK
run: git clone --depth 1 https://github.com/acidanthera/MacKernelSDK.git
- name: get shortsha
id: vars
run: |
echo ::set-output name=sha_short::$(git rev-parse --short=8 ${{ github.sha }})
- name: build
env:
VOODOORMI_SHA: VoodooRMI-${{ steps.vars.outputs.sha_short }}
run: |
mkdir -p build/${VOODOORMI_SHA}/{Debug,Release}
xcodebuild -configuration Debug -scheme VoodooRMI -derivedDataPath build clean build
xcodebuild -configuration Release -scheme VoodooRMI -derivedDataPath build build
- uses: actions/upload-artifact@v2
with:
name: VoodooRMI
path: build/Build/Products/*/*.zip