Skip to content

Commit

Permalink
Revert make package in .github/workflows/ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tekezo committed May 20, 2024
1 parent 35a0f2c commit 28c93e4
Showing 1 changed file with 25 additions and 3 deletions.
28 changes: 25 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,34 @@ jobs:
runs-on: macos-14

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: brew install
run: brew install xcodegen
- name: package
run: make package

# Regarding `make package`, the build fails because the Xcode environment on GitHub Actions is not set up for DriverKit builds.
# Specifically, the following error occurs. Therefore, `make package` is not executed in CI.

#
# Error when not using `-allowProvisioningUpdates`:
#
# error: No profiles for 'org.pqrs.Karabiner-DriverKit-VirtualHIDDevice' were found: Xcode couldn't find any DriverKit App Development provisioning profiles matching 'org.pqrs.Karabiner-DriverKit-VirtualHIDDevice'.
# Automatic signing is disabled and unable to generate a profile.
# To enable automatic signing, pass -allowProvisioningUpdates to xcodebuild. (in target 'Karabiner-DriverKit-VirtualHIDDevice' from project 'Karabiner-DriverKit-VirtualHIDDevice')
#

#
# Error when using `-allowProvisioningUpdates`:
#
# error: No Accounts: Add a new account in Accounts settings. (in target 'Karabiner-DriverKit-VirtualHIDDevice' from project 'Karabiner-DriverKit-VirtualHIDDevice')
# error: No profiles for 'org.pqrs.Karabiner-DriverKit-VirtualHIDDevice' were found: Xcode couldn't find any DriverKit App Development provisioning profiles matching 'org.pqrs.Karabiner-DriverKit-VirtualHIDDevice'.
# (in target 'Karabiner-DriverKit-VirtualHIDDevice' from project 'Karabiner-DriverKit-VirtualHIDDevice')

# - name: package
# run: make package

- name: examples
run: make -C examples

- name: tests
run: make -C tests

0 comments on commit 28c93e4

Please sign in to comment.