Skip to content

Commit

Permalink
[actions] in .github/workflows, rename manual.* as testsuite_oneproce…
Browse files Browse the repository at this point in the history
…ss.*
  • Loading branch information
valassi committed Nov 3, 2023
1 parent 06e8eca commit 36c6a3e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ if [ "$stage" == "" ] || [ "$1" != "" ]; then usage; fi

# Start
echo "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
echo "[manual.sh] $stage starting at $(date)"
echo "[testsuite_oneprocess.sh] $stage starting at $(date)"
echo "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"

# Execute stage
Expand All @@ -186,9 +186,9 @@ status=$?
echo
echo "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
if [ $status -eq 0 ]; then
echo "[manual.sh] $stage finished with status=$status (OK) at $(date)"
echo "[testsuite_oneprocess.sh] $stage finished with status=$status (OK) at $(date)"
else
echo "[manual.sh] $stage finished with status=$status (NOT OK) at $(date)"
echo "[testsuite_oneprocess.sh] $stage finished with status=$status (NOT OK) at $(date)"
fi
echo "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
exit $status
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
# Created by: A. Valassi (Oct 2023) for the MG5aMC CUDACPP plugin.
# Further modified by: A. Valassi (2023) for the MG5aMC CUDACPP plugin.

name: Manual test suite
name: Test suite for one process

#----------------------------------------------------------------------------------------------------------------------------------

on:

push:
paths:
- '.github/workflows/manual.*'
- '.github/workflows/testsuite_oneprocess.*'

workflow_dispatch:
#inputs:
Expand Down Expand Up @@ -93,16 +93,16 @@ jobs:
cache-${{ runner.os }}

- name: codegen
run: .github/workflows/manual.sh codegen
run: .github/workflows/testsuite_oneprocess.sh codegen

- name: tput_ini
run: .github/workflows/manual.sh tput_ini
run: .github/workflows/testsuite_oneprocess.sh tput_ini

- name: tput_run
run: .github/workflows/manual.sh tput_run
run: .github/workflows/testsuite_oneprocess.sh tput_run

- name: tput_fin
run: .github/workflows/manual.sh tput_fin
run: .github/workflows/testsuite_oneprocess.sh tput_fin

- name: update_cache
id: cache-update
Expand Down

0 comments on commit 36c6a3e

Please sign in to comment.