Bump org.apache.commons:commons-compress from 1.9 to 1.26.0 #43
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
# This workflow will build a Java project with Ant | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-ant | |
name: Java CI - Lucee 5.4 | |
on: [push, pull_request,workflow_dispatch] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
luceeVersionQuery: 5.4/all/light | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
- name: Set up MySQL (local) | |
run: | | |
sudo systemctl start mysql | |
mysql -e 'CREATE DATABASE lucee' -uroot -proot | |
mysql -e 'CREATE USER "lucee"@"localhost" IDENTIFIED WITH mysql_native_password BY "lucee";' -uroot -proot | |
mysql -e 'GRANT ALL PRIVILEGES ON lucee.* TO "lucee"@"localhost"' -uroot -proot | |
- name: Cache Maven packages | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2 | |
key: lucee-script-runner-maven-cache | |
- name: Cache Lucee files | |
uses: actions/cache@v3 | |
with: | |
path: _actions/lucee/script-runner/main/lucee-download-cache | |
key: lucee-downloads-${{ env.luceeVersion }} | |
restore-keys: | | |
lucee-downloads | |
- name: Build with Ant | |
run: ant -noinput -verbose -buildfile build.xml | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: hibernate-lex | |
path: dist/*.lex | |
- name: Checkout Lucee | |
uses: actions/checkout@v3 | |
with: | |
repository: lucee/lucee | |
path: lucee | |
- name: Run Lucee Test Suite (testFilter="orm") | |
uses: lucee/script-runner@main | |
with: | |
webroot: ${{ github.workspace }}/lucee/test | |
execute: /bootstrap-tests.cfm | |
luceeVersion: ${{ env.luceeVersion }} | |
extensionDir: ${{ github.workspace }}/dist | |
extensions: | |
env: | |
testLabels: orm | |
testAdditional: ${{ github.workspace }}/tests | |
MYSQL_SERVER: localhost | |
MYSQL_USERNAME: lucee | |
MYSQL_PASSWORD: lucee | |
MYSQL_PORT: 3306 | |
MYSQL_DATABASE: lucee | |
- name: Publish Test Results | |
uses: EnricoMi/publish-unit-test-result-action@v1 | |
if: always() | |
with: | |
files: ${{ github.workspace }}/lucee/test/reports/junit-test-results.xml | |
check_name: "Test Results" | |