testing the issue-678 (46) #51
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
#testing the issue-678 (12) | |
name: Build Project | |
on: | |
push: | |
branches: suyashgaonkar-issue678 | |
pull_request: | |
branches: [ master, ver/* ] | |
workflow_dispatch: | |
jobs: | |
test-docker: | |
runs-on: ubuntu-20.04 | |
container: docker:cli | |
steps: | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 12 | |
- name: setup env vartiables | |
run: | |
- name: Execute Java | |
run: | | |
which java | |
type java | |
echo "JAVA HOME "$JAVA_HOME | |
echo "JRE HOME "$JRE_HOME | |
export PATH=${JAVA_HOME}/bin/java | |
echo "PATH "$PATH | |
java -help | |
test-ubuntu: | |
runs-on: ubuntu-latest | |
container: ubuntu:latest | |
steps: | |
- name: Install docker and docker-compose | |
run: | | |
apt -y update | |
apt -y install sudo curl | |
curl -fsSL https://get.docker.com -o get-docker.sh | |
sudo sh ./get-docker.sh | |
apt-get install docker-compose-plugin | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 11 | |
- name: Execute Java | |
run: | | |
which java | |
type java | |
echo $JAVA_HOME | |
echo $PATH | |
java --help |