Skip to content

Commit

Permalink
Oh, inputs.test-suite might have been treated as a string
Browse files Browse the repository at this point in the history
  • Loading branch information
JesseTG committed Sep 11, 2023
1 parent 57e0826 commit f423341
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/actions/deps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,21 +73,21 @@ runs:
# Using sccache on Windows due to https://github.com/hendrikmuhs/ccache-action/issues/112

- name: Download Test Files
if: ${{ inputs.test-suite }}
if: ${{ inputs.test-suite == "true" }}
uses: actions/checkout@v3
with:
repository: "${{ inputs.test-suite && inputs.testfile-repo || 'NA' }}"
token: "${{ inputs.test-suite && inputs.testfile-repo-token || 'NA' }}"
repository: "${{ inputs.testfile-repo }}"
token: "${{ inputs.testfile-repo-token }}"
path: "${{ inputs.testfile-dir }}"

- name: Prepare Test Files
if: ${{ inputs.test-suite }}
if: ${{ inputs.test-suite == "true" }}
working-directory: "${{ inputs.testfile-dir }}"
shell: bash
run: 7z x "${{ inputs.dsi-nand-archive }}"

- name: Check Out RetroArch
if: ${{ inputs.test-suite }}
if: ${{ inputs.test-suite == "true" }}
uses: actions/checkout@v3
with:
repository: libretro/RetroArch
Expand All @@ -96,7 +96,7 @@ runs:
token: "${{ inputs.testfile-repo-token }}"

- name: Configure RetroArch
if: ${{ inputs.test-suite }}
if: ${{ inputs.test-suite == "true" }}
env:
CC: "ccache gcc"
CXX: "ccache g++"
Expand Down Expand Up @@ -156,7 +156,7 @@ runs:
--enable-sse
- name: Build RetroArch
if: ${{ inputs.test-suite }}
if: ${{ inputs.test-suite == "true" }}
shell: bash
working-directory: "${{ github.workspace }}/RetroArch"
run: make -j$(nproc)

0 comments on commit f423341

Please sign in to comment.