Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
laves committed Feb 8, 2024
1 parent 16c2e27 commit fe6f34b
Showing 1 changed file with 29 additions and 29 deletions.
58 changes: 29 additions & 29 deletions .github/workflows/example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ jobs:

strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
node-version: [18.x, 20.x]
include:
- node-version: 16.x
gradle-version: 6.5
agp-version: 4.1.3
java-version: 11
# - node-version: 16.x
# gradle-version: 6.5
# agp-version: 4.1.3
# java-version: 11
- node-version: 18.x
gradle-version: 7.5
agp-version: 7.4.2
Expand Down Expand Up @@ -75,33 +75,33 @@ jobs:
run: ./gradlew assembleDebug
working-directory: example/android

build-ios:
runs-on: macos-latest
# build-ios:
# runs-on: macos-latest

strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
# strategy:
# matrix:
# node-version: [16.x, 18.x, 20.x]

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

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
# - name: Use Node.js ${{ matrix.node-version }}
# uses: actions/setup-node@v3
# with:
# node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: yarn bootstrap
# - name: Install dependencies
# run: yarn bootstrap

- name: Build bundle
run: yarn example ios-bundle
# - name: Build bundle
# run: yarn example ios-bundle

- name: Build
run: xcrun xcodebuild build
-configuration Debug
-workspace VoiceProcessorExample.xcworkspace
-sdk iphoneos
-scheme VoiceProcessorExample
-derivedDataPath ddp
CODE_SIGNING_ALLOWED=NO
working-directory: example/ios
# - name: Build
# run: xcrun xcodebuild build
# -configuration Debug
# -workspace VoiceProcessorExample.xcworkspace
# -sdk iphoneos
# -scheme VoiceProcessorExample
# -derivedDataPath ddp
# CODE_SIGNING_ALLOWED=NO
# working-directory: example/ios

0 comments on commit fe6f34b

Please sign in to comment.