Skip to content
This repository has been archived by the owner on Apr 10, 2024. It is now read-only.

Commit

Permalink
fix test, use aor for java 16
Browse files Browse the repository at this point in the history
  • Loading branch information
binhex committed Sep 24, 2021
1 parent 463d716 commit 6e36e16
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/workflow-docker-manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
git_clone_scripts_repo="https://github.com/binhex/scripts.git"
git clone "${git_clone_scripts_repo}" "${git_clone_scripts_dest}"
"${git_clone_scripts_dest}/shell/arch/docker/testrunner.sh" --image-name "ghcr.io/${{ github.repository }}:${{ github.event.inputs.tags }}" --container-ports '-p 9999:8500' --network-type 'bridge'
"${git_clone_scripts_dest}/shell/arch/docker/testrunner.sh" --image-name "ghcr.io/${{ github.repository }}:${{ github.event.inputs.tags }}" --container-ports '-p 9999:8000' --network-type 'bridge'
- name: Push Docker image to Docker Hub
uses: nick-invision/retry@v2.4.0
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workflow-docker-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
git_clone_scripts_repo="https://github.com/binhex/scripts.git"
git clone "${git_clone_scripts_repo}" "${git_clone_scripts_dest}"
"${git_clone_scripts_dest}/shell/arch/docker/testrunner.sh" --image-name "ghcr.io/${{ github.repository }}:${{ steps.identify_tag.outputs.tag }}" --container-ports '-p 9999:8500' --network-type 'bridge'
"${git_clone_scripts_dest}/shell/arch/docker/testrunner.sh" --image-name "ghcr.io/${{ github.repository }}:${{ steps.identify_tag.outputs.tag }}" --container-ports '-p 9999:8000' --network-type 'bridge'
- name: Push Docker image to Docker Hub
uses: nick-invision/retry@v2.4.0
with:
Expand Down
4 changes: 2 additions & 2 deletions build/root/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ fi
####

# define pacman packages
pacman_packages="jre8-openjdk-headless jre11-openjdk-headless"
pacman_packages="jre8-openjdk-headless jre11-openjdk-headless jre-openjdk-headless"

# install compiled packages using pacman
if [[ ! -z "${pacman_packages}" ]]; then
Expand All @@ -46,7 +46,7 @@ fi
####

# define aur packages
aur_packages="java-openjdk-bin"
aur_packages=""

# call aur install script (arch user repo)
source aur.sh
Expand Down

0 comments on commit 6e36e16

Please sign in to comment.