From c58f6a303011db17eac359e19eb447aff2c721ee Mon Sep 17 00:00:00 2001 From: Sam Ken Date: Fri, 21 Jul 2023 02:24:03 +0800 Subject: [PATCH] Create Setup Java JDK #SAMkenXEcosystem PMUXSystemAPIs updates with DAVID/MORAL Project - > https://turnkey-triumph-326606-cloudstorage.googleapis.com/dev/samkenx main email : orbit.hierarchy@gmail.com Signed-off-by: Sam Ken --- .../python-package-conda.yml/Setup Java JDK | 79 +++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 .github/workflows/python-package-conda.yml/Setup Java JDK diff --git a/.github/workflows/python-package-conda.yml/Setup Java JDK b/.github/workflows/python-package-conda.yml/Setup Java JDK new file mode 100644 index 0000000000..77f0c2ccc2 --- /dev/null +++ b/.github/workflows/python-package-conda.yml/Setup Java JDK @@ -0,0 +1,79 @@ +name: Python Package using Conda + +on: [push] + +jobs: + build-linux: + runs-on: ubuntu-latest + strategy: + max-parallel: 5 + + steps: + - uses: actions/checkout@v3 + - name: Set up Python 3.10 + uses: actions/setup-python@v3 + with: + python-version: '3.10' + - name: Add conda to system path + run: | + # $CONDA is an environment variable pointing to the root of the miniconda directory + echo $CONDA/bin >> $GITHUB_PATH + - name: Install dependencies + run: | + conda env update --file environment.yml --name base + - name: Lint with flake8 + run: | + conda install flake8 + # stop the build if there are Python syntax errors or undefined names + flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics + # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide + flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics + - name: Test with pytest + run: | + conda install pytest + pytest + - name: Setup Java JDK + + uses: actions/setup-java@v1.4.4 + + with: + + # The Java version to make available on the path. Takes a whole or semver Java version, or 1.x syntax (e.g. 1.8 => Java 8.x). Early access versions can be specified in the form of e.g. 14-ea, 14.0.0-ea, or 14.0.0-ea.28 + + java-version: + + # The package type (jre, jdk, jdk+fx) + + java-package: # optional, default is jdk + + # The architecture (x86, x64) of the package. + + architecture: # optional, default is x64 + + # Path to where the compressed JDK is located. The path could be in your source repository or a local path on the agent. + + jdkFile: # optional + + # ID of the distributionManagement repository in the pom.xml file. Default is `github` + + server-id: # optional, default is github + + # Environment variable name for the username for authentication to the Apache Maven repository. Default is $GITHUB_ACTOR + + server-username: # optional, default is GITHUB_ACTOR + + # Environment variable name for password or token for authentication to the Apache Maven repository. Default is $GITHUB_TOKEN + + server-password: # optional, default is GITHUB_TOKEN + + # Path to where the settings.xml file will be written. Default is ~/.m2. + + settings-path: # optional + + # GPG private key to import. Default is empty string. + + gpg-private-key: # optional + + # Environment variable name for the GPG private key passphrase. Default is $GPG_PASSPHRASE. + + gpg-passphrase: # optional