Skip to content

Commit

Permalink
[ci] run_samples/action.yml no longer cares about inpust because it i…
Browse files Browse the repository at this point in the history
…s already being given the correct psyc.
  • Loading branch information
harrand committed May 18, 2024
1 parent bd0376b commit 8f1699e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 13 deletions.
8 changes: 0 additions & 8 deletions .github/actions/run_samples/action.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,6 @@
name: "run-samples"
description: "Download a previously-generated psyc and try to compile some stuff with it."

inputs:
build_config:
required: true
type: string
compiler:
required: true
type: string

runs:
using: "composite"
steps:
Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/ci_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,11 @@ jobs:
- name: Retrieve psyc
uses: actions/download-artifact@v4
with:
name: psyc_${{ inputs.compiler }}_${{ inputs.build_config }}
name: psyc_${{ matrix.compiler }}_${{ matrix.build_config }}

- name: Prepare
shell: bash
run: sudo chmod +x psyc

- name: 'Run Samples'
uses: ./.github/actions/run_samples
with:
compiler: ${{ matrix.compiler }}
build_config: ${{ matrix.build_config }}
uses: ./.github/actions/run_samples

0 comments on commit 8f1699e

Please sign in to comment.