Skip to content

πŸ› FIX: More fixes for cbelasticsearch artifact upload #82

πŸ› FIX: More fixes for cbelasticsearch artifact upload

πŸ› FIX: More fixes for cbelasticsearch artifact upload #82

Workflow file for this run

name: Pull Requests
on:
push:
branches-ignore:
- "main"
- "master"
- "development"
pull_request:
branches:
- development
jobs:
tests:
name: Tests
runs-on: ubuntu-20.04
env:
ELASTICSEARCH_PROTOCOL: http
ELASTICSEARCH_HOST: 127.0.0.1
ELASTICSEARCH_PORT: 9200
ELASTICSEARCH_VERSION: 7.8.0
strategy:
fail-fast: true
matrix:
cfengine: ["lucee@5", "adobe@2016", "adobe@2018"]
javaVersion: [ "8", "11" ]
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Java
uses: actions/setup-java@v2
with:
distribution: "adopt"
java-version: ${{ matrix.javaVersion }}
- name: Setup CommandBox
uses: elpete/setup-commandbox@v1.0.0
- name: Setup Elasticsearch
run: |
docker run -d -p "${{ env.ELASTICSEARCH_PORT }}:9200" -e 'discovery.type=single-node' elasticsearch:${{ env.ELASTICSEARCH_VERSION }}
rm -rf modules_app
rm -f tests/specs/unit/SecondaryClientTest.cfc
- name: Install Dependencies
run: |
box install
box install commandbox-cfconfig,commandbox-dotenv,commandbox-docbox
- name: Start ${{ matrix.cfengine }} Server
run: |
box server start serverConfigFile="server-${{ matrix.cfengine }}.json" --debug
curl http://127.0.0.1:60299
- name: Run Web App Tests
run: |
mkdir -p tests/results
box testbox run --verbose outputFile=tests/results/web outputFormats=json,antjunit
- name: Publish PR Test Reports
uses: mikepenz/action-junit-report@v2
with:
report_paths: 'tests/results/*.xml'
check_name: "${{ matrix.cfengine }}/${{ matrix.javaVersion }} Test Results"
summary: true
- name: Failure debugging
if: ${{ failure() }}
run: box server log serverConfigFile="server-${{ matrix.cfengine }}.json"
format:
name: Format
runs-on: ubuntu-20.04
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Java
uses: actions/setup-java@v2
with:
distribution: "adopt"
java-version: "11"
- name: Set Up CommandBox
uses: elpete/setup-commandbox@v1.0.0
- name: Install CFFormat
run: box install commandbox-cfformat
- name: Run CFFormat
run: box run-script format
- name: Commit Format Changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Apply cfformat changes