-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[noissue]
- Loading branch information
Showing
25 changed files
with
469 additions
and
348 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2021.08.26-276-g45ce134 | ||
2021.08.26-290-g4d54366 |
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,29 +27,28 @@ jobs: | |
uses: "./.github/workflows/build.yml" | ||
|
||
test: | ||
runs-on: "ubuntu-latest" | ||
needs: "build" | ||
uses: "./.github/workflows/test.yml" | ||
|
||
changelog: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: "actions/checkout@v4" | ||
with: | ||
fetch-depth: 0 | ||
path: "pulp_container" | ||
|
||
- uses: actions/setup-python@v4 | ||
- uses: "actions/setup-python@v4" | ||
with: | ||
python-version: "3.11" | ||
|
||
- name: Install python dependencies | ||
- name: "Install python dependencies" | ||
run: | | ||
echo ::group::PYDEPS | ||
pip install gitpython toml | ||
echo ::endgroup:: | ||
- name: Configure Git with pulpbot name and email | ||
- name: "Configure Git with pulpbot name and email" | ||
run: | | ||
git config --global user.name 'pulpbot' | ||
git config --global user.email '[email protected]' | ||
|
@@ -72,31 +71,30 @@ jobs: | |
needs: test | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: "actions/checkout@v4" | ||
with: | ||
fetch-depth: 1 | ||
path: "pulp_container" | ||
|
||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 1 | ||
repository: "pulp/pulp-openapi-generator" | ||
path: "pulp-openapi-generator" | ||
|
||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: "plugin_package" | ||
path: "pulp_container/dist/" | ||
|
||
- uses: actions/setup-python@v4 | ||
- uses: "actions/setup-python@v4" | ||
with: | ||
python-version: "3.8" | ||
|
||
- name: Set environment variables | ||
- name: "Install python dependencies" | ||
run: | | ||
echo ::group::PYDEPS | ||
pip install requests 'packaging~=21.3' mkdocs pymdown-extensions 'Jinja2<3.1' | ||
echo ::endgroup:: | ||
- name: "Set environment variables" | ||
run: | | ||
echo "TEST=${{ matrix.env.TEST }}" >> $GITHUB_ENV | ||
- name: Download built docs | ||
uses: actions/download-artifact@v3 | ||
with: | ||
|
@@ -109,25 +107,13 @@ jobs: | |
name: "python-client-docs.tar" | ||
path: "pulp_container" | ||
|
||
- name: Setting secrets | ||
run: python3 .github/workflows/scripts/secrets.py "$SECRETS_CONTEXT" | ||
- name: "Setting secrets" | ||
run: | | ||
python3 .github/workflows/scripts/secrets.py "$SECRETS_CONTEXT" | ||
env: | ||
SECRETS_CONTEXT: ${{ toJson(secrets) }} | ||
SECRETS_CONTEXT: "${{ toJson(secrets) }}" | ||
|
||
- name: Publish docs to pulpproject.org | ||
run: | | ||
tar -xvf docs.tar -C ./docs | ||
.github/workflows/scripts/publish_docs.sh nightly ${GITHUB_REF##*/} | ||
|
||
- name: Logs | ||
if: always() | ||
run: | | ||
echo "Need to debug? Please check: https://github.com/marketplace/actions/debugging-with-tmate" | ||
http --timeout 30 --check-status --pretty format --print hb "https://pulp${PULP_API_ROOT}api/v3/status/" || true | ||
docker images || true | ||
docker ps -a || true | ||
docker logs pulp || true | ||
docker exec pulp ls -latr /etc/yum.repos.d/ || true | ||
docker exec pulp cat /etc/yum.repos.d/* || true | ||
docker exec pulp bash -c "pip3 list && pip3 install pipdeptree && pipdeptree" |
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
Oops, something went wrong.