[actions] in actions manual.sh, export USECCACHE=1 to enable ccache i… #35
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (C) 2020-2023 CERN and UCLouvain. | |
# Licensed under the GNU Lesser General Public License (version 3 or later). | |
# 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 | |
on: | |
push: | |
paths: | |
- '.github/workflows/manual.*' | |
workflow_dispatch: | |
#inputs: | |
# name: | |
# description: 'Person to greet' | |
# default: 'World' | |
# required: true | |
# type: string | |
jobs: | |
manualtestsuite: | |
runs-on: ubuntu-latest | |
steps: | |
# See https://github.com/actions/checkout | |
# (NB actions/checkout@v2 is deprecated) | |
# (NB actions/checkout@v4 need "Allow owner and select non-owner" and "Allow actions created by github") | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
#- name: codegen_step | |
# run: .github/workflows/manual.sh codegen | |
- name: tput_step | |
run: .github/workflows/manual.sh tput | |
#- name: Send greeting | |
# run: echo "Hello ${{ inputs.name }}" |