Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #74

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
74 changes: 74 additions & 0 deletions .github/workflows/rhel-9-4-single.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
---
name: Run Edge Test on RHEL 9.4.0

on:
issue_comment:
types:
- created

jobs:
pr-info:
if: ${{ github.event.issue.pull_request &&
(endsWith(github.event.comment.body, '/test-rhel-9-4')) }}
runs-on: ubuntu-latest
steps:
- name: Query author repository permissions
uses: octokit/[email protected]
id: user_permission
with:
route: GET /repos/${{ github.repository }}/collaborators/${{ github.event.sender.login }}/permission
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Check if user does have correct permissions
if: contains('admin write', fromJson(steps.user_permission.outputs.data).permission)
id: check_user_perm
run: |
echo "User '${{ github.event.sender.login }}' has permission '${{ fromJson(steps.user_permission.outputs.data).permission }}' allowed values: 'admin', 'write'"
echo "allowed_user=true" >> $GITHUB_OUTPUT

- name: Get information for pull request
uses: octokit/[email protected]
id: pr-api
with:
route: GET /repos/${{ github.repository }}/pulls/${{ github.event.issue.number }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

outputs:
allowed_user: ${{ steps.check_user_perm.outputs.allowed_user }}
sha: ${{ fromJson(steps.pr-api.outputs.data).head.sha }}
ref: ${{ fromJson(steps.pr-api.outputs.data).head.ref }}
repo_url: ${{ fromJson(steps.pr-api.outputs.data).head.repo.html_url }}

edge-rhel-94:
needs: pr-info
if: ${{ needs.pr-info.outputs.allowed_user == 'true' && github.event.issue.pull_request }}
continue-on-error: true
strategy:
matrix:
arch: [x86_64, aarch64]
runs-on: ubuntu-latest

steps:
- name: Clone repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
with:
ref: ${{ needs.pr-info.outputs.sha }}
fetch-depth: 0

- name: Run the tests
uses: sclorg/testing-farm-as-github-action@v2
with:
compose: RHEL-9.4.0-Nightly
arch: ${{ matrix.arch }}
api_key: ${{ secrets.TF_API_KEY }}
git_url: ${{ needs.pr-info.outputs.repo_url }}
git_ref: ${{ needs.pr-info.outputs.ref }}
update_pull_request_status: true
pull_request_status_name: "edge-rhel-9.4-${{ matrix.arch }}"
tmt_context: "arch=${{ matrix.arch }};distro=rhel"
tmt_plan_regex: edge-test
tf_scope: private
secrets: "DOWNLOAD_NODE=${{ secrets.DOWNLOAD_NODE }};OCP4_TOKEN=${{ secrets.OCP4_TOKEN }};QUAY_USERNAME=${{ secrets.QUAY_USERNAME }};QUAY_PASSWORD=${{ secrets.QUAY_PASSWORD }};DOCKERHUB_USERNAME=${{ secrets.DOCKERHUB_USERNAME }};DOCKERHUB_PASSWORD=${{ secrets.DOCKERHUB_PASSWORD }};AWS_ACCESS_KEY_ID=${{ secrets.AWS_ACCESS_KEY_ID }};AWS_SECRET_ACCESS_KEY=${{ secrets.AWS_SECRET_ACCESS_KEY }};AWS_DEFAULT_REGION=us-east-1;GOVC_URL=${{ secrets.GOVC_URL }};GOVC_USERNAME=${{ secrets.GOVC_USERNAME }};GOVC_PASSWORD=${{ secrets.GOVC_PASSWORD }};GOVC_INSECURE=1"

38 changes: 19 additions & 19 deletions .github/workflows/rhel-9-4.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: rhel94 test
name: Run Edge Test on RHEL 9.4.0

on:
issue_comment:
Expand All @@ -9,9 +9,9 @@ on:
jobs:
pr-info:
if: ${{ github.event.issue.pull_request &&
(endsWith(github.event.comment.body, '/test-rhel-9-4') ||
endsWith(github.event.comment.body, '/test-rhel-9-4-commit') ||
endsWith(github.event.comment.body, '/test-rhel-9-4-installer') ||
(endsWith(github.event.comment.body, '/test-rhel-9-44') ||
endsWith(github.event.comment.body, '/test-rhel-9-4-virt') ||
endsWith(github.event.comment.body, '/test-rhel-9-4-ng') ||
endsWith(github.event.comment.body, '/test-rhel-9-4-raw') ||
endsWith(github.event.comment.body, '/test-rhel-9-4-ami') ||
endsWith(github.event.comment.body, '/test-rhel-9-4-arm-ami') ||
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
fetch-depth: 0

- name: Run the tests
uses: sclorg/testing-farm-as-github-action@v1
uses: sclorg/testing-farm-as-github-action@v2
with:
compose: RHEL-9.4.0-Nightly
arch: x86_64
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
fetch-depth: 0

- name: Run the tests
uses: sclorg/testing-farm-as-github-action@v1
uses: sclorg/testing-farm-as-github-action@v2
with:
compose: RHEL-9.4.0-Nightly
arch: x86_64
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
fetch-depth: 0

- name: Run the tests
uses: sclorg/testing-farm-as-github-action@v1
uses: sclorg/testing-farm-as-github-action@v2
with:
compose: RHEL-9.4.0-Nightly
arch: x86_64
Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:
fetch-depth: 0

- name: Run the tests
uses: sclorg/testing-farm-as-github-action@v1
uses: sclorg/testing-farm-as-github-action@v2
with:
compose: RHEL-9.4.0-Nightly
arch: x86_64
Expand Down Expand Up @@ -188,7 +188,7 @@ jobs:
fetch-depth: 0

- name: Run the tests
uses: sclorg/testing-farm-as-github-action@v1
uses: sclorg/testing-farm-as-github-action@v2
with:
compose: RHEL-9.4.0-Nightly
arch: aarch64
Expand Down Expand Up @@ -217,7 +217,7 @@ jobs:
fetch-depth: 0

- name: Run the tests
uses: sclorg/testing-farm-as-github-action@v1
uses: sclorg/testing-farm-as-github-action@v2
with:
compose: RHEL-9.4.0-Nightly
arch: x86_64
Expand Down Expand Up @@ -246,7 +246,7 @@ jobs:
fetch-depth: 0

- name: Run the tests
uses: sclorg/testing-farm-as-github-action@v1
uses: sclorg/testing-farm-as-github-action@v2
with:
compose: RHEL-9.4.0-Nightly
arch: x86_64
Expand Down Expand Up @@ -275,7 +275,7 @@ jobs:
fetch-depth: 0

- name: Run the tests
uses: sclorg/testing-farm-as-github-action@v1
uses: sclorg/testing-farm-as-github-action@v2
with:
compose: RHEL-9.4.0-Nightly
arch: aarch64
Expand Down Expand Up @@ -304,7 +304,7 @@ jobs:
fetch-depth: 0

- name: Run the tests
uses: sclorg/testing-farm-as-github-action@v1
uses: sclorg/testing-farm-as-github-action@v2
with:
compose: RHEL-9.4.0-Nightly
arch: x86_64
Expand Down Expand Up @@ -333,7 +333,7 @@ jobs:
fetch-depth: 0

- name: Run the tests
uses: sclorg/testing-farm-as-github-action@v1
uses: sclorg/testing-farm-as-github-action@v2
with:
compose: RHEL-9.4.0-Nightly
arch: x86_64
Expand Down Expand Up @@ -362,7 +362,7 @@ jobs:
fetch-depth: 0

- name: Run the tests
uses: sclorg/testing-farm-as-github-action@v1
uses: sclorg/testing-farm-as-github-action@v2
with:
compose: RHEL-9.4.0-Nightly
arch: x86_64
Expand Down Expand Up @@ -391,7 +391,7 @@ jobs:
fetch-depth: 0

- name: Run the tests
uses: sclorg/testing-farm-as-github-action@v1
uses: sclorg/testing-farm-as-github-action@v2
with:
compose: RHEL-9.4.0-Nightly
arch: x86_64
Expand Down Expand Up @@ -420,7 +420,7 @@ jobs:
fetch-depth: 0

- name: Run the tests
uses: sclorg/testing-farm-as-github-action@v1
uses: sclorg/testing-farm-as-github-action@v2
with:
compose: RHEL-9.4.0-Nightly
arch: x86_64
Expand Down Expand Up @@ -449,7 +449,7 @@ jobs:
fetch-depth: 0

- name: Run the tests
uses: sclorg/testing-farm-as-github-action@v1
uses: sclorg/testing-farm-as-github-action@main
with:
compose: RHEL-9.4.0-Nightly
arch: x86_64
Expand Down Expand Up @@ -478,7 +478,7 @@ jobs:
fetch-depth: 0

- name: Run the tests
uses: sclorg/testing-farm-as-github-action@v1
uses: sclorg/testing-farm-as-github-action@v2
with:
compose: RHEL-9.4.0-Nightly
arch: x86_64
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# RHEL-Edge
# RHEL-Edge1

RHEL-Edge help [documentation](HELP.md)

Expand Down
5 changes: 5 additions & 0 deletions ostree-8-to-9.sh
Original file line number Diff line number Diff line change
Expand Up @@ -639,4 +639,9 @@ check_result
# Final success clean up
clean_up

# Check process
greenprint "🛃 Checking for leftover or orphaned process"
sudo ps axjf
sudo pstree -pal

exit 0
1 change: 0 additions & 1 deletion ostree-ami-image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ get_compose_metadata () {

# Move the JSON file into place.
sudo cat "${TEMPDIR}"/"${COMPOSE_ID}".json | jq -M '.' | tee "$METADATA_FILE" > /dev/null
sudo chown admin:admin "${TEMPDIR}"/"${COMPOSE_ID}".json
}

# Build ostree image.
Expand Down
6 changes: 6 additions & 0 deletions setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -232,3 +232,9 @@ sudo composer-cli sources list
for SOURCE in $(sudo composer-cli sources list); do
sudo composer-cli sources info "$SOURCE"
done

# In case port 8081 is already in use
sudo dnf install -y lsof
if lsof -nP -iTCP -sTCP:LISTEN|grep 8081; then
sudo fuser -k 8081/tcp
fi
Loading