Fix playback position does not match Now Playing, #5337 #2051
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [develop] | |
pull_request: | |
branches: [develop] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
include: | |
- xcode: "16.1" | |
deployment_target: "" | |
runs-on: macos-15 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: ./other/download_libs.sh | |
- name: Build | |
run: xcodebuild -project iina.xcodeproj ONLY_ACTIVE_ARCH=NO -scheme iina -configuration Nightly ${{ matrix.deployment_target }} | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer | |
- name: Archive | |
run: tar cvJf ~/iina.tar.xz -C /Users/runner/Library/Developer/Xcode/DerivedData/iina-csbkugdtxazzqogjnydbothqrvib/Build/Products/Nightly IINA.app | |
- name: Save artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: IINA | |
path: ~/iina.tar.xz | |