Skip to content

Commit

Permalink
feat: update ffmpeg to 6 and qt to 6.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Sn0wCrack authored Oct 4, 2023
1 parent fd4956c commit 3cdfffd
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@ jobs:
- name: Setup ffmpeg
run: |
$ProgressPreference = 'SilentlyContinue'
Invoke-WebRequest -UseBasicParsing -Uri "https://github.com/BtbN/FFmpeg-Builds/releases/download/latest/ffmpeg-n5.1-latest-win64-lgpl-shared-5.1.zip" -OutFile ".\ffmpeg-n5.1-latest-win64-lgpl-shared-5.1.zip"
Expand-Archive -LiteralPath "ffmpeg-n5.1-latest-win64-lgpl-shared-5.1.zip" -DestinationPath "."
Rename-Item "ffmpeg-n5.1-latest-win64-lgpl-shared-5.1" "ffmpeg"
Invoke-WebRequest -UseBasicParsing -Uri "https://github.com/BtbN/FFmpeg-Builds/releases/download/latest/ffmpeg-n6.0-latest-win64-lgpl-shared-6.0.zip" -OutFile ".\ffmpeg-n5.1-latest-win64-lgpl-shared-5.1.zip"
Expand-Archive -LiteralPath "ffmpeg-n6.0-latest-win64-lgpl-shared-6.0.zip" -DestinationPath "."
Rename-Item "ffmpeg-n6.0-latest-win64-lgpl-shared-6.0.zip" "ffmpeg"
Write-Output "${{ github.workspace }}\ffmpeg\bin" | Out-File -FilePath $Env:GITHUB_PATH -Encoding utf8 -Append
- name: Setup protoc
Expand Down Expand Up @@ -160,15 +160,15 @@ jobs:
python3 -m pip install --user --upgrade scons protobuf grpcio-tools pyinstaller
python3 -c 'import google.protobuf; print(google.protobuf.__file__)'
# aqt list-qt windows desktop --modules 6.2.4 win64_msvc2019_64
# aqt list-qt windows desktop --modules 6.5.3 win64_msvc2019_64
# debug_info qt3d qt5compat qtactiveqt qtcharts qtconnectivity qtdatavis3d
# qtimageformats qtlottie qtmultimedia qtnetworkauth qtpositioning qtquick3d
# qtquicktimeline qtremoteobjects qtscxml qtsensors qtserialbus qtserialport
# qtshadertools qtvirtualkeyboard qtwebchannel qtwebengine qtwebsockets qtwebview
- name: Setup Qt
uses: jurplel/install-qt-action@v3
with:
version: '6.5.1'
version: '6.5.3'
host: 'windows'
target: 'desktop'
arch: 'win64_msvc2019_64'
Expand Down Expand Up @@ -228,8 +228,8 @@ jobs:
cp "${{ github.workspace }}\openssl\x64\bin\libssl-1_1-x64.dll" Chiaki-Win-Qt6
cp "${{ github.workspace }}\SDL2\lib\x64\SDL2.dll" Chiaki-Win-Qt6
cp "${{ github.workspace }}\ffmpeg\bin\swresample-4.dll" Chiaki-Win-Qt6
cp "${{ github.workspace }}\ffmpeg\bin\avcodec-59.dll" Chiaki-Win-Qt6
cp "${{ github.workspace }}\ffmpeg\bin\avutil-57.dll" Chiaki-Win-Qt6
cp "${{ github.workspace }}\ffmpeg\bin\avcodec-60.dll" Chiaki-Win-Qt6
cp "${{ github.workspace }}\ffmpeg\bin\avutil-58.dll" Chiaki-Win-Qt6
windeployqt.exe --no-translations Chiaki-Win-Qt6\chiaki.exe
- name: Package Chiaki
Expand Down

0 comments on commit 3cdfffd

Please sign in to comment.