Skip to content

Commit

Permalink
ls the dependencies before and after build
Browse files Browse the repository at this point in the history
  • Loading branch information
NQNStudios committed Sep 8, 2024
1 parent 92480e5 commit b7d1de9
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,6 @@ jobs:
- Debug
runs-on: '${{ matrix.os.name }}-${{ matrix.os.version }}'
steps:
- run: echo $DEBUG_FLAG
- name: Export GitHub Actions cache environment variables
uses: actions/github-script@v7
with:
script: "core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || ''); core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || '');"
- name: checkout
uses: actions/checkout@v4
with:
Expand All @@ -58,6 +53,9 @@ jobs:
fileName: 'dependencies-${{ matrix.os.deps || matrix.os.name }}-${{ matrix.configuration }}.tar'
extract: true
out-file-path: 'deps'
- name: ls the dependencies
run: ls -R deps/lib
shell: bash
- name: Windows build dependencies
run: 'vcpkg install libxml2 && pip install scons'
if: ${{ matrix.os.name == 'windows' }}
Expand All @@ -73,6 +71,9 @@ jobs:
- name: Build
run: '${{ matrix.os.scons-script }} test=false debug=$DEBUG_FLAG'
shell: bash
- name: ls the dependencies after the build
run: ls -R deps/lib
shell: bash
- name: Codesign and notarize
run: './.github/workflows/scripts/mac/sign-apps.sh'
if: ${{ matrix.os.name == 'macos' }}
Expand Down

0 comments on commit b7d1de9

Please # to comment.