Skip to content

Commit a8c0d81

Browse files
committed
improve logging around license
1 parent b6b1c1c commit a8c0d81

2 files changed

Lines changed: 11 additions & 7 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@ This GitHub action installs Apama Community Edition on either Windows or Linux.
44
The environment variables for the workflow are configured as if the `apama_env` script had been run/sourced.
55
This means that subsequent steps can use Apama executables such as `engine_deploy` and `apamadoc`.
66

7-
If you wish to test on both Windows and Linux, you can use a Bash shell or PowerShell to execute Apama tools on both
8-
operating systems. Since the executable for running PySys tests has different extensions on Windows/Linux, this action
9-
sets an additional `APAMA_PYSYS` environment variable containing the script name so you can run it with
10-
`$APAMA_PYSYS run <args>` in your shell script.
7+
If you wish to test on both Windows and Linux, you can use the same shell (typically Bash or PowerShell) to execute
8+
Apama tools on both operating systems. Since the executable for running PySys tests has different extensions on
9+
Windows/Linux, this action sets an additional `APAMA_PYSYS` environment variable containing the PySys script's name so
10+
you can run PySys with `$APAMA_PYSYS run <args>` in your shell script.
1111

12-
The action has only one input parameter, `apama-version`, which must be set to a valid 4-digit Apama version.
12+
The action has only one input parameter, `apama-version`, which must be set to a valid 4-digit Apama version
13+
from http://www.apamacommunity.com/downloads/.
1314

1415
It is recommended to use this action with a cache to avoid downloading and running the Apama installer every time
1516
the job executes. To do this, add the following after your checkout action and before setup-apama:
1617

1718
env:
18-
# The 4-digit version to download from http://www.apamacommunity.com/downloads/
1919
SETUP_APAMA_VERSION: 10.5.3.2
2020

2121
steps:

action.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# http://www.apache.org/licenses/LICENSE-2.0
44
# Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
55
#
6-
# Use of this action implies that you have also agreed to the terms for using Apama Community Edition which you can read at http://www.apamacommunity.com/terms-conditions/
6+
# Use of this action implies agreement to the terms for using Apama Community Edition - http://www.apamacommunity.com/terms-conditions/
77

88
name: 'Setup Apama'
99
description: 'Install Software AG Apama Community Edition and add it to your GitHub Actions environment'
@@ -19,6 +19,10 @@ runs:
1919
- name: Install Apama Community Edition
2020
shell: bash
2121
run: |
22+
echo Use of this action implies agreement to the terms for using Apama Community Edition
23+
echo See: http://www.apamacommunity.com/terms-conditions/
24+
echo
25+
2226
APAMA_CACHE_TAR=~/cached-apama-installation.tar
2327
2428
if [[ ${{runner.os}} = Windows ]]; then

0 commit comments

Comments
 (0)