ubi 9.6 changes to use JDK from RHEL #724
Workflow file for this run
This file contains hidden or 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
| name: Open-CE PR Tests for Conda recipe | |
| on: | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| required_tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: '0' | |
| - uses: conda-incubator/setup-miniconda@v2.0.0 | |
| with: | |
| auto-update-conda: false | |
| python-version: "3.10" | |
| - name: Build and install the conda package | |
| id: build_install | |
| run: | | |
| conda install -y conda-build | |
| sh ./packaging_scripts/create_conda_package.sh | |
| conda create -y -n test_opence python=3.11 | |
| source /home/runner/.profile | |
| conda activate test_opence | |
| conda install -y open-ce-builder -c file://$(pwd)/open-ce-conda-pkg | |
| conda list open-ce-builder | |
| open-ce build env -h |