Bump to pulpcore 3.49.7 #1704
Workflow file for this run
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
--- | |
name: OCI Env Integration | |
on: | |
pull_request: | |
branches: | |
- '**' | |
push: | |
branches: | |
- '**' | |
workflow_dispatch: | |
jobs: | |
integration: | |
strategy: | |
fail-fast: false | |
matrix: | |
env: | |
- TEST_PROFILE: ldap | |
- TEST_PROFILE: keycloak | |
- TEST_PROFILE: standalone | |
- TEST_PROFILE: rbac | |
- TEST_PROFILE: certified-sync | |
- TEST_PROFILE: insights | |
- TEST_PROFILE: iqe_rbac | |
- TEST_PROFILE: x_repo_search | |
- TEST_PROFILE: community | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
# Note: COMPOSE_INTERACTIVE_NO_CLI=1 is required for oci-env to work correctly when there's no interactive terminal | |
- name: Set environment variables | |
run: | | |
echo "OCI_ENV_PATH=${HOME}/work/galaxy_ng/oci_env" >> $GITHUB_ENV | |
echo "COMPOSE_INTERACTIVE_NO_CLI=1" >> $GITHUB_ENV | |
echo "OCI_VERBOSE=1" >> $GITHUB_ENV | |
echo "GH_DUMP_LOGS=1" >> $GITHUB_ENV | |
- name: Update apt | |
run: sudo apt -y update | |
- name: Install LDAP requirements | |
run: sudo apt-get install -y libsasl2-dev python3 libldap2-dev libssl-dev build-essential | |
- name: setup oci-env | |
run: | | |
git clone https://github.com/pulp/oci_env.git $OCI_ENV_PATH | |
pip install -e $OCI_ENV_PATH/client/ | |
mkdir $OCI_ENV_PATH/db_backup/ | |
- name: run integration tests | |
run: make gh-action/${{ matrix.env.TEST_PROFILE }} |