Skip to content

Commit

Permalink
Update handbrake.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ewt45 authored Oct 1, 2024
1 parent 655faeb commit f190072
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/handbrake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
# 可以搜索到这个问题,貌似没解决 https://github.com/rust-lang/crates-build-env/issues/125 https://github.com/orgs/community/discussions/113480
# 唔,是 'libunwind-dev' is incompatible with libc++-14-dev and libc++-dev。 所以先只装 libunwind-dev,会自动卸载冲突的。再正常安装其他依赖就行了

env:
DESTDIR: ${{ github.workspace }}/handbrake-build-install
# env:
# DESTDIR: ${{ github.workspace }}/handbrake-build-install

steps:
- name: test env
Expand All @@ -35,17 +35,17 @@ jobs:
run: |
git clone https://github.com/HandBrake/HandBrake.git && cd HandBrake
./configure --launch-jobs=0 --launch
make --directory=build install
DESTDIR=${{ github.workspace }}/handbrake-build-install make --directory=build install
- name: bring back cache
uses: actions/[email protected]
with:
path: ${{ github.workspace }}/HandBrake
key: aaa
# - name: bring back cache
# uses: actions/[email protected]
# with:
# path: ${{ github.workspace }}/HandBrake
# key: aaa

- name: upload
uses: actions/upload-artifact@v4
with:
name: handbrake
path: ${{ env.DESTDIR }}
path: ${{ github.workspace }}/handbrake-build-install #${{ env.DESTDIR }}

0 comments on commit f190072

Please sign in to comment.