Skip to content

Commit

Permalink
upload pdb
Browse files Browse the repository at this point in the history
  • Loading branch information
wang-bin committed May 28, 2024
1 parent a502ad1 commit d157b98
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
env:
TARGET_OS: ${{ matrix.target }}
CONFIG_SUFFIX: -${{ matrix.config }}
V: 1
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -205,7 +206,8 @@ jobs:
run: |
set SDK_NAME=ffmpeg-%FF_VERSION%-%TARGET_OS%-vs2022%CONFIG_SUFFIX%
move sdk* %SDK_NAME%
7z a -ssc -m0=lzma2 -mx=9 -ms=on -mf=off %SDK_NAME%.7z %SDK_NAME%
7z a -ssc -m0=lzma2 -mx=9 -ms=on -mf=off -xr!*.pdb %SDK_NAME%.7z %SDK_NAME%
7z a -ssc -m0=lzma2 -mx=9 -ms=on -mf=off %SDK_NAME%-pdb.7z -ir!%SDK_NAME%\*.pdb
- name: Archieve SDK
uses: actions/upload-artifact@v4
with:
Expand Down Expand Up @@ -278,7 +280,8 @@ jobs:
run: |
set SDK_NAME=ffmpeg-%FF_VERSION%-%TARGET_OS%-vs2022ltl%CONFIG_SUFFIX%
move sdk* %SDK_NAME%
7z a -ssc -m0=lzma2 -mx=9 -ms=on -mf=off %SDK_NAME%.7z %SDK_NAME%
7z a -ssc -m0=lzma2 -mx=9 -ms=on -mf=off -xr!*.pdb %SDK_NAME%.7z %SDK_NAME%
7z a -ssc -m0=lzma2 -mx=9 -ms=on -mf=off %SDK_NAME%-pdb.7z -ir!%SDK_NAME%\*.pdb
- name: Archieve SDK
uses: actions/upload-artifact@v4
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build_gpl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ env:
NINJA_STATUS: '[%f/%t %e %r]'
SF_PW_MAPPED: ${{ secrets.SF_PW }}
SF_USER_MAPPED: ${{ secrets.SF_USER }}
V: 1

jobs:
Apple:
Expand Down
2 changes: 2 additions & 0 deletions avbuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1691,6 +1691,8 @@ EOF
exit 2
}
$THIS_DIR/tools/mklibffmpeg.sh $PWD $THIS_DIR/$INSTALL_DIR || exit 3
ls
find . -name "*.pdb" -exec cp -avf {} $THIS_DIR/$INSTALL_DIR/bin \;
cd $THIS_DIR/$INSTALL_DIR
echo "https://github.com/wang-bin/avbuild" > README.txt
cp -af "$FFSRC/Changelog" .
Expand Down

0 comments on commit d157b98

Please sign in to comment.