Skip to content

Commit

Permalink
test build targetting java 11
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Feb 20, 2024
1 parent 12fbcff commit e79fd23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
LUCEE_BUILD_JAVA_VERSION:
required: true
type: string
default: '8'
default: '11'
push:
branches:
- '**' # thus ignoring tagging
Expand All @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest
env:
DO_DEPLOY: "${{ github.event_name == 'push' && github.ref == 'refs/heads/5.4' }}"
LUCEE_BUILD_JAVA_VERSION: 8
LUCEE_BUILD_JAVA_VERSION: 11
LUCEE_TEST_JAVA_VERSION: ''
services:
sql-server:
Expand Down
6 changes: 0 additions & 6 deletions ant/build-core.xml
Original file line number Diff line number Diff line change
Expand Up @@ -651,8 +651,6 @@
<!-- compie the source -->
<javac
srcdir="${srcInst}"
source="1.8"
target="1.8"
destdir="${temp}/agent"
debug="true" debuglevel="lines,vars,source" classpath="${dependencies}">
</javac>
Expand All @@ -671,8 +669,6 @@
<!-- compie the source -->
<javac
srcdir="${srcLoader}"
source="1.8"
target="1.8"
destdir="${temp}/loader"
debug="true" debuglevel="lines,vars,source" classpath="${dependencies}">
</javac>
Expand Down Expand Up @@ -707,8 +703,6 @@
<!-- compile the core -->
<javac
srcdir="${srcCore}"
source="1.8"
target="1.8"
destdir="${core}"
debug="true" debuglevel="lines,vars,source">
<classpath refid="classpath" />
Expand Down

0 comments on commit e79fd23

Please sign in to comment.