forked from pulp/pulp_rpm
-
Notifications
You must be signed in to change notification settings - Fork 0
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
2 changed files
with
116 additions
and
92 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 |
---|---|---|
|
@@ -26,101 +26,101 @@ jobs: | |
build: | ||
uses: "./.github/workflows/build.yml" | ||
|
||
test: | ||
needs: "build" | ||
uses: "./.github/workflows/test.yml" | ||
|
||
changelog: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: "actions/checkout@v4" | ||
with: | ||
fetch-depth: 0 | ||
path: "pulp_rpm" | ||
|
||
- uses: "actions/setup-python@v5" | ||
with: | ||
python-version: "3.11" | ||
|
||
- name: "Install python dependencies" | ||
run: | | ||
echo ::group::PYDEPS | ||
pip install gitpython packaging toml | ||
echo ::endgroup:: | ||
- name: "Configure Git with pulpbot name and email" | ||
run: | | ||
git config --global user.name 'pulpbot' | ||
git config --global user.email '[email protected]' | ||
- name: Collect changes from all branches | ||
run: python .ci/scripts/collect_changes.py | ||
|
||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v6 | ||
with: | ||
token: ${{ secrets.RELEASE_TOKEN }} | ||
title: "Update Changelog" | ||
body: "" | ||
branch: "changelog/update" | ||
delete-branch: true | ||
path: "pulp_rpm" | ||
|
||
publish: | ||
runs-on: ubuntu-latest | ||
needs: test | ||
|
||
steps: | ||
- uses: "actions/checkout@v4" | ||
with: | ||
fetch-depth: 1 | ||
path: "pulp_rpm" | ||
|
||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: "plugin_package" | ||
path: "pulp_rpm/dist/" | ||
|
||
- uses: "actions/setup-python@v5" | ||
with: | ||
python-version: "3.11" | ||
|
||
- 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@v4 | ||
with: | ||
name: "docs.tar" | ||
path: "pulp_rpm" | ||
|
||
- name: Download Python client docs | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: "python-client-docs.tar" | ||
path: "pulp_rpm" | ||
|
||
- name: "Setting secrets" | ||
run: | | ||
python3 .github/workflows/scripts/secrets.py "$SECRETS_CONTEXT" | ||
env: | ||
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##*/} | ||
# test: | ||
# needs: "build" | ||
# uses: "./.github/workflows/test.yml" | ||
|
||
# changelog: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: "actions/checkout@v4" | ||
# with: | ||
# fetch-depth: 0 | ||
# path: "pulp_rpm" | ||
|
||
# - uses: "actions/setup-python@v5" | ||
# with: | ||
# python-version: "3.11" | ||
|
||
# - name: "Install python dependencies" | ||
# run: | | ||
# echo ::group::PYDEPS | ||
# pip install gitpython packaging toml | ||
# echo ::endgroup:: | ||
|
||
# - name: "Configure Git with pulpbot name and email" | ||
# run: | | ||
# git config --global user.name 'pulpbot' | ||
# git config --global user.email '[email protected]' | ||
|
||
# - name: Collect changes from all branches | ||
# run: python .ci/scripts/collect_changes.py | ||
|
||
# - name: Create Pull Request | ||
# uses: peter-evans/create-pull-request@v6 | ||
# with: | ||
# token: ${{ secrets.RELEASE_TOKEN }} | ||
# title: "Update Changelog" | ||
# body: "" | ||
# branch: "changelog/update" | ||
# delete-branch: true | ||
# path: "pulp_rpm" | ||
|
||
# publish: | ||
# runs-on: ubuntu-latest | ||
# needs: test | ||
|
||
# steps: | ||
# - uses: "actions/checkout@v4" | ||
# with: | ||
# fetch-depth: 1 | ||
# path: "pulp_rpm" | ||
|
||
# - uses: actions/download-artifact@v4 | ||
# with: | ||
# name: "plugin_package" | ||
# path: "pulp_rpm/dist/" | ||
|
||
# - uses: "actions/setup-python@v5" | ||
# with: | ||
# python-version: "3.11" | ||
|
||
# - 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@v4 | ||
# with: | ||
# name: "docs.tar" | ||
# path: "pulp_rpm" | ||
|
||
# - name: Download Python client docs | ||
# uses: actions/download-artifact@v4 | ||
# with: | ||
# name: "python-client-docs.tar" | ||
# path: "pulp_rpm" | ||
|
||
# - name: "Setting secrets" | ||
# run: | | ||
# python3 .github/workflows/scripts/secrets.py "$SECRETS_CONTEXT" | ||
# env: | ||
# 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##*/} | ||
|
||
performance: | ||
runs-on: ubuntu-latest | ||
needs: test | ||
needs: build | ||
|
||
strategy: | ||
fail-fast: false | ||
|
@@ -150,6 +150,26 @@ jobs: | |
name: "plugin_package" | ||
path: "pulp_rpm/dist/" | ||
|
||
- name: "Download API specs" | ||
uses: "actions/download-artifact@v4" | ||
with: | ||
name: "api_spec" | ||
path: "pulp_rpm/" | ||
|
||
- name: "Download client packages" | ||
uses: "actions/download-artifact@v4" | ||
with: | ||
name: "python-client.tar" | ||
path: "pulp_rpm" | ||
|
||
- name: "Unpack client packages" | ||
working-directory: "pulp-openapi-generator" | ||
run: | | ||
mkdir -p "pulp_rpm-client" | ||
pushd "pulp_rpm-client" | ||
tar xvf "../../pulp_rpm/rpm-python-client.tar" | ||
popd | ||
- uses: "actions/setup-python@v5" | ||
with: | ||
python-version: "3.11" | ||
|
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