Update Lucene packages to v2.9.4 #104
3 changed files with 52 additions and 15 deletions
42
.github/actions/ssh/action.yml
vendored
Normal file
42
.github/actions/ssh/action.yml
vendored
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
name: SSH setup
|
||||||
|
description: Set up the SSH agent
|
||||||
|
|
||||||
|
inputs:
|
||||||
|
config:
|
||||||
|
description: The SSH configuration
|
||||||
|
required: true
|
||||||
|
key:
|
||||||
|
description: The private SSH key
|
||||||
|
required: true
|
||||||
|
known-hosts:
|
||||||
|
description: The list of known hosts
|
||||||
|
required: true
|
||||||
|
|
||||||
|
runs:
|
||||||
|
using: composite
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Configure SSH
|
||||||
|
shell: sh
|
||||||
|
env:
|
||||||
|
CONFIG: ${{ inputs.config }}
|
||||||
|
KNOWN_HOSTS: ${{ inputs.known-hosts }}
|
||||||
|
run: |
|
||||||
|
mkdir -p ~/.ssh
|
||||||
|
echo "${CONFIG}" > ~/.ssh/config
|
||||||
|
echo "${KNOWN_HOSTS}" > ~/.ssh/known_hosts
|
||||||
|
|
||||||
|
- name: Start SSH agent
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
SOCKET: /tmp/ssh-agent.sock
|
||||||
|
run: |
|
||||||
|
echo "SSH_AUTH_SOCK=${SOCKET}" >> $GITHUB_ENV
|
||||||
|
ssh-agent -a ${SOCKET} > /dev/null
|
||||||
|
|
||||||
|
- name: Add SSH key
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
KEY: ${{ inputs.key }}
|
||||||
|
run: |
|
||||||
|
ssh-add - <<< "${KEY}"
|
21
.github/workflows/stage.yml
vendored
21
.github/workflows/stage.yml
vendored
|
@ -1,10 +1,6 @@
|
||||||
name: Deploy (Staging)
|
name: Deploy (Staging)
|
||||||
|
|
||||||
on:
|
on: workflow_dispatch
|
||||||
workflow_dispatch
|
|
||||||
|
|
||||||
env:
|
|
||||||
SSH_AUTH_SOCK: /tmp/ssh-agent.sock
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
stage:
|
stage:
|
||||||
|
@ -17,6 +13,13 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Set up SSH agent
|
||||||
|
uses: ./.github/actions/ssh
|
||||||
|
with:
|
||||||
|
config: ${{ vars.SSH_CONFIG }}
|
||||||
|
key: ${{ secrets.SSH_PRIVATE_KEY }}
|
||||||
|
known-hosts: ${{ vars.SSH_KNOWN_HOSTS }}
|
||||||
|
|
||||||
- name: Set up Java
|
- name: Set up Java
|
||||||
uses: actions/setup-java@v4
|
uses: actions/setup-java@v4
|
||||||
with:
|
with:
|
||||||
|
@ -29,14 +32,6 @@ jobs:
|
||||||
- name: Build with Gradle
|
- name: Build with Gradle
|
||||||
run: ./gradlew installDist
|
run: ./gradlew installDist
|
||||||
|
|
||||||
- name: Set up SSH agent
|
|
||||||
run: |
|
|
||||||
ssh-agent -a $SSH_AUTH_SOCK > /dev/null
|
|
||||||
ssh-add - <<< "${{ secrets.SSH_PRIVATE_KEY }}"
|
|
||||||
mkdir -p ~/.ssh
|
|
||||||
echo '${{ vars.SSH_CONFIG }}' > ~/.ssh/config
|
|
||||||
echo '${{ vars.KNOWN_HOSTS }}' > ~/.ssh/known_hosts
|
|
||||||
|
|
||||||
- name: Publish to staging server
|
- name: Publish to staging server
|
||||||
run: |
|
run: |
|
||||||
rsync build/install/helma/ antville.dev:/ \
|
rsync build/install/helma/ antville.dev:/ \
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
dependencies {
|
dependencies {
|
||||||
runtimeOnly 'ch.ethz.ganymed:ganymed-ssh2:build209'
|
runtimeOnly 'ch.ethz.ganymed:ganymed-ssh2:build209'
|
||||||
runtimeOnly 'net.sourceforge.jexcelapi:jxl:2.5.7'
|
runtimeOnly 'net.sourceforge.jexcelapi:jxl:2.5.7'
|
||||||
runtimeOnly 'org.apache.lucene:lucene-analyzers:2.2.0'
|
runtimeOnly 'org.apache.lucene:lucene-analyzers:2.9.4'
|
||||||
runtimeOnly 'org.apache.lucene:lucene-core:2.2.0'
|
runtimeOnly 'org.apache.lucene:lucene-core:2.9.4'
|
||||||
}
|
}
|
||||||
|
|
||||||
jar.enabled = false
|
jar.enabled = false
|
||||||
|
|
Loading…
Add table
Reference in a new issue