Skip to content

Commit

Permalink
Add build_whl job in GitHub actions to build DE modules whl
Browse files Browse the repository at this point in the history
  • Loading branch information
vitodb committed Dec 28, 2023
1 parent fee4461 commit f936473
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/actions/python-command-in-el9-container/action.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# SPDX-FileCopyrightText: 2017 Fermi Research Alliance, LLC
# SPDX-License-Identifier: Apache-2.0

name: "Python Action"
description: "Run python3 action in preconfigured EL9 container image"
inputs:
python-command:
description: "What to run"
required: true
default: "-m pytest"
logfile:
description: "Where to log output"
required: true
default: "pytest.log"
runs:
using: "docker"
image: "../../../package/ci/EL9/Dockerfile"
args:
- ${{ inputs.python-command }}
- ${{ inputs.logfile }}

0 comments on commit f936473

Please sign in to comment.