Skip to content

Commit 63b4761

Browse files
authored
Merge pull request #191 from pcdubs/ci-fixes
2 parents 4c7211f + 1af05cc commit 63b4761

14 files changed

Lines changed: 672 additions & 130 deletions

.github/workflows/comment-ci.yaml

Lines changed: 48 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ jobs:
5252
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
5353
with:
5454
ref: ${{ needs.check-pull-request.outputs.sha }}
55+
allow-unsafe-pr-checkout: true
5556

5657
- name: Build RPMs
5758
run: |
@@ -64,7 +65,6 @@ jobs:
6465
centos-10-bootc:
6566
needs: check-pull-request
6667
if: ${{ needs.check-pull-request.outputs.allowed_user == 'true' }}
67-
continue-on-error: true
6868
runs-on: ubuntu-latest
6969
permissions:
7070
statuses: write
@@ -88,7 +88,6 @@ jobs:
8888
fedora-44-bootc:
8989
needs: check-pull-request
9090
if: ${{ needs.check-pull-request.outputs.allowed_user == 'true' }}
91-
continue-on-error: true
9291
runs-on: ubuntu-latest
9392
permissions:
9493
statuses: write
@@ -112,7 +111,6 @@ jobs:
112111
fedora-45-bootc:
113112
needs: check-pull-request
114113
if: ${{ needs.check-pull-request.outputs.allowed_user == 'true' }}
115-
continue-on-error: true
116114
runs-on: ubuntu-latest
117115
permissions:
118116
statuses: write
@@ -121,22 +119,67 @@ jobs:
121119
- name: Run the tests
122120
uses: sclorg/testing-farm-as-github-action@230555baceb860aa468d216f1822974836b965d1 # v4.3.1
123121
with:
124-
compose: Fedora-Rawhide
122+
compose: Fedora-44
125123
api_key: ${{ secrets.TF_API_PUB_KEY }}
126124
git_url: ${{ needs.check-pull-request.outputs.repo_url }}
127125
git_ref: ${{ needs.check-pull-request.outputs.ref }}
128126
update_pull_request_status: true
129127
pull_request_status_name: fedora-45-bootc
130128
tmt_context: "arch=x86_64;distro=fedora-45"
131129
tmt_plan_regex: bootc
130+
variables: "ARCH=x86_64;TARGET_DISTRO=fedora-45;PR_NUMBER=${{ needs.check-pull-request.outputs.pr_number }}"
131+
timeout: 90
132+
secrets: "QUAY_USERNAME=${{ secrets.QUAY_USERNAME }};QUAY_PASSWORD=${{ secrets.QUAY_PASSWORD }};STAGE_REDHAT_IO_USERNAME=${{ secrets.STAGE_REDHAT_IO_USERNAME }};STAGE_REDHAT_IO_TOKEN=${{ secrets.STAGE_REDHAT_IO_TOKEN }};DOWNLOAD_NODE=${{ secrets.DOWNLOAD_NODE }}"
133+
134+
fedora-44-ostree:
135+
needs: check-pull-request
136+
if: ${{ needs.check-pull-request.outputs.allowed_user == 'true' }}
137+
runs-on: ubuntu-latest
138+
permissions:
139+
statuses: write
140+
141+
steps:
142+
- name: Run the tests
143+
uses: sclorg/testing-farm-as-github-action@230555baceb860aa468d216f1822974836b965d1 # v4.3.1
144+
with:
145+
compose: Fedora-44
146+
api_key: ${{ secrets.TF_API_PUB_KEY }}
147+
git_url: ${{ needs.check-pull-request.outputs.repo_url }}
148+
git_ref: ${{ needs.check-pull-request.outputs.ref }}
149+
update_pull_request_status: true
150+
pull_request_status_name: fedora-44-ostree
151+
tmt_context: "arch=x86_64;distro=fedora-44"
152+
tmt_plan_regex: fedora-iot-raw
132153
variables: "ARCH=x86_64;PR_NUMBER=${{ needs.check-pull-request.outputs.pr_number }}"
133154
timeout: 90
134155
secrets: "QUAY_USERNAME=${{ secrets.QUAY_USERNAME }};QUAY_PASSWORD=${{ secrets.QUAY_PASSWORD }};STAGE_REDHAT_IO_USERNAME=${{ secrets.STAGE_REDHAT_IO_USERNAME }};STAGE_REDHAT_IO_TOKEN=${{ secrets.STAGE_REDHAT_IO_TOKEN }};DOWNLOAD_NODE=${{ secrets.DOWNLOAD_NODE }}"
135156

157+
fedora-45-ostree:
158+
needs: check-pull-request
159+
if: ${{ needs.check-pull-request.outputs.allowed_user == 'true' }}
160+
runs-on: ubuntu-latest
161+
permissions:
162+
statuses: write
163+
164+
steps:
165+
- name: Run the tests
166+
uses: sclorg/testing-farm-as-github-action@230555baceb860aa468d216f1822974836b965d1 # v4.3.1
167+
with:
168+
compose: Fedora-44
169+
api_key: ${{ secrets.TF_API_PUB_KEY }}
170+
git_url: ${{ needs.check-pull-request.outputs.repo_url }}
171+
git_ref: ${{ needs.check-pull-request.outputs.ref }}
172+
update_pull_request_status: true
173+
pull_request_status_name: fedora-45-ostree
174+
tmt_context: "arch=x86_64;distro=fedora-45"
175+
tmt_plan_regex: fedora-iot-raw
176+
variables: "ARCH=x86_64;TARGET_DISTRO=fedora-45;PR_NUMBER=${{ needs.check-pull-request.outputs.pr_number }}"
177+
timeout: 90
178+
secrets: "QUAY_USERNAME=${{ secrets.QUAY_USERNAME }};QUAY_PASSWORD=${{ secrets.QUAY_PASSWORD }};STAGE_REDHAT_IO_USERNAME=${{ secrets.STAGE_REDHAT_IO_USERNAME }};STAGE_REDHAT_IO_TOKEN=${{ secrets.STAGE_REDHAT_IO_TOKEN }};DOWNLOAD_NODE=${{ secrets.DOWNLOAD_NODE }}"
179+
136180
centos-9-ostree:
137181
needs: check-pull-request
138182
if: ${{ needs.check-pull-request.outputs.allowed_user == 'true' }}
139-
continue-on-error: true
140183
runs-on: ubuntu-latest
141184
permissions:
142185
statuses: write
@@ -160,7 +203,6 @@ jobs:
160203
rhel-9-8-ostree:
161204
needs: check-pull-request
162205
if: ${{ needs.check-pull-request.outputs.allowed_user == 'true' }}
163-
continue-on-error: true
164206
runs-on: ubuntu-latest
165207
permissions:
166208
statuses: write
@@ -184,7 +226,6 @@ jobs:
184226
rhel-10-2-bootc:
185227
needs: check-pull-request
186228
if: ${{ needs.check-pull-request.outputs.allowed_user == 'true' }}
187-
continue-on-error: true
188229
runs-on: ubuntu-latest
189230
permissions:
190231
statuses: write

.github/workflows/greenboot-ci.yaml

Lines changed: 51 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ jobs:
5252
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
5353
with:
5454
ref: ${{ needs.check-pull-request.outputs.sha }}
55+
allow-unsafe-pr-checkout: true
5556

5657
- name: Build RPMs
5758
run: |
@@ -64,7 +65,6 @@ jobs:
6465
centos-10-bootc:
6566
needs: check-pull-request
6667
if: ${{ needs.check-pull-request.outputs.allowed_user == 'true' }}
67-
continue-on-error: true
6868
runs-on: ubuntu-latest
6969
permissions:
7070
statuses: write
@@ -88,7 +88,6 @@ jobs:
8888
fedora-44-bootc:
8989
needs: check-pull-request
9090
if: ${{ needs.check-pull-request.outputs.allowed_user == 'true' }}
91-
continue-on-error: true
9291
runs-on: ubuntu-latest
9392
permissions:
9493
statuses: write
@@ -112,7 +111,6 @@ jobs:
112111
fedora-45-bootc:
113112
needs: check-pull-request
114113
if: ${{ needs.check-pull-request.outputs.allowed_user == 'true' }}
115-
continue-on-error: true
116114
runs-on: ubuntu-latest
117115
permissions:
118116
statuses: write
@@ -121,22 +119,67 @@ jobs:
121119
- name: Run the tests
122120
uses: sclorg/testing-farm-as-github-action@230555baceb860aa468d216f1822974836b965d1 # v4.3.1
123121
with:
124-
compose: Fedora-Rawhide
122+
compose: Fedora-44
125123
api_key: ${{ secrets.TF_API_PUB_KEY }}
126124
git_url: ${{ needs.check-pull-request.outputs.repo_url }}
127125
git_ref: ${{ needs.check-pull-request.outputs.ref }}
128126
update_pull_request_status: true
129127
pull_request_status_name: fedora-45-bootc
130128
tmt_context: "arch=x86_64;distro=fedora-45"
131129
tmt_plan_regex: bootc
130+
variables: "ARCH=x86_64;TARGET_DISTRO=fedora-45;PR_NUMBER=${{ needs.check-pull-request.outputs.pr_number }}"
131+
timeout: 90
132+
secrets: "QUAY_USERNAME=${{ secrets.QUAY_USERNAME }};QUAY_PASSWORD=${{ secrets.QUAY_PASSWORD }};STAGE_REDHAT_IO_USERNAME=${{ secrets.STAGE_REDHAT_IO_USERNAME }};STAGE_REDHAT_IO_TOKEN=${{ secrets.STAGE_REDHAT_IO_TOKEN }};DOWNLOAD_NODE=${{ secrets.DOWNLOAD_NODE }}"
133+
134+
fedora-44-ostree:
135+
needs: check-pull-request
136+
if: ${{ needs.check-pull-request.outputs.allowed_user == 'true' }}
137+
runs-on: ubuntu-latest
138+
permissions:
139+
statuses: write
140+
141+
steps:
142+
- name: Run the tests
143+
uses: sclorg/testing-farm-as-github-action@230555baceb860aa468d216f1822974836b965d1 # v4.3.1
144+
with:
145+
compose: Fedora-44
146+
api_key: ${{ secrets.TF_API_PUB_KEY }}
147+
git_url: ${{ needs.check-pull-request.outputs.repo_url }}
148+
git_ref: ${{ needs.check-pull-request.outputs.ref }}
149+
update_pull_request_status: true
150+
pull_request_status_name: fedora-44-ostree
151+
tmt_context: "arch=x86_64;distro=fedora-44"
152+
tmt_plan_regex: fedora-iot-raw
132153
variables: "ARCH=x86_64;PR_NUMBER=${{ needs.check-pull-request.outputs.pr_number }}"
133154
timeout: 90
134155
secrets: "QUAY_USERNAME=${{ secrets.QUAY_USERNAME }};QUAY_PASSWORD=${{ secrets.QUAY_PASSWORD }};STAGE_REDHAT_IO_USERNAME=${{ secrets.STAGE_REDHAT_IO_USERNAME }};STAGE_REDHAT_IO_TOKEN=${{ secrets.STAGE_REDHAT_IO_TOKEN }};DOWNLOAD_NODE=${{ secrets.DOWNLOAD_NODE }}"
135156

157+
fedora-45-ostree:
158+
needs: check-pull-request
159+
if: ${{ needs.check-pull-request.outputs.allowed_user == 'true' }}
160+
runs-on: ubuntu-latest
161+
permissions:
162+
statuses: write
163+
164+
steps:
165+
- name: Run the tests
166+
uses: sclorg/testing-farm-as-github-action@230555baceb860aa468d216f1822974836b965d1 # v4.3.1
167+
with:
168+
compose: Fedora-44
169+
api_key: ${{ secrets.TF_API_PUB_KEY }}
170+
git_url: ${{ needs.check-pull-request.outputs.repo_url }}
171+
git_ref: ${{ needs.check-pull-request.outputs.ref }}
172+
update_pull_request_status: true
173+
pull_request_status_name: fedora-45-ostree
174+
tmt_context: "arch=x86_64;distro=fedora-45"
175+
tmt_plan_regex: fedora-iot-raw
176+
variables: "ARCH=x86_64;TARGET_DISTRO=fedora-45;PR_NUMBER=${{ needs.check-pull-request.outputs.pr_number }}"
177+
timeout: 90
178+
secrets: "QUAY_USERNAME=${{ secrets.QUAY_USERNAME }};QUAY_PASSWORD=${{ secrets.QUAY_PASSWORD }};STAGE_REDHAT_IO_USERNAME=${{ secrets.STAGE_REDHAT_IO_USERNAME }};STAGE_REDHAT_IO_TOKEN=${{ secrets.STAGE_REDHAT_IO_TOKEN }};DOWNLOAD_NODE=${{ secrets.DOWNLOAD_NODE }}"
179+
136180
centos-9-ostree:
137181
needs: check-pull-request
138182
if: ${{ needs.check-pull-request.outputs.allowed_user == 'true' }}
139-
continue-on-error: true
140183
runs-on: ubuntu-latest
141184
permissions:
142185
statuses: write
@@ -154,13 +197,12 @@ jobs:
154197
tmt_context: "arch=x86_64;distro=cs-9"
155198
tmt_plan_regex: ostree
156199
variables: "ARCH=x86_64;PR_NUMBER=${{ needs.check-pull-request.outputs.pr_number }}"
157-
timeout: 90
200+
timeout: 120
158201
secrets: "QUAY_USERNAME=${{ secrets.QUAY_USERNAME }};QUAY_PASSWORD=${{ secrets.QUAY_PASSWORD }};STAGE_REDHAT_IO_USERNAME=${{ secrets.STAGE_REDHAT_IO_USERNAME }};STAGE_REDHAT_IO_TOKEN=${{ secrets.STAGE_REDHAT_IO_TOKEN }};DOWNLOAD_NODE=${{ secrets.DOWNLOAD_NODE }}"
159202

160203
rhel-9-8-ostree:
161204
needs: check-pull-request
162205
if: ${{ needs.check-pull-request.outputs.allowed_user == 'true' }}
163-
continue-on-error: true
164206
runs-on: ubuntu-latest
165207
permissions:
166208
statuses: write
@@ -178,13 +220,12 @@ jobs:
178220
tmt_context: "arch=x86_64;distro=rhel-9-8"
179221
tmt_plan_regex: ostree
180222
variables: "ARCH=x86_64;PR_NUMBER=${{ needs.check-pull-request.outputs.pr_number }}"
181-
timeout: 90
223+
timeout: 120
182224
secrets: "QUAY_USERNAME=${{ secrets.QUAY_USERNAME }};QUAY_PASSWORD=${{ secrets.QUAY_PASSWORD }};STAGE_REDHAT_IO_USERNAME=${{ secrets.STAGE_REDHAT_IO_USERNAME }};STAGE_REDHAT_IO_TOKEN=${{ secrets.STAGE_REDHAT_IO_TOKEN }};DOWNLOAD_NODE=${{ secrets.DOWNLOAD_NODE }}"
183225

184226
rhel-10-2-bootc:
185227
needs: check-pull-request
186228
if: ${{ needs.check-pull-request.outputs.allowed_user == 'true' }}
187-
continue-on-error: true
188229
runs-on: ubuntu-latest
189230
permissions:
190231
statuses: write
@@ -202,5 +243,5 @@ jobs:
202243
tmt_context: "arch=x86_64;distro=rhel-10-2"
203244
tmt_plan_regex: bootc
204245
variables: "ARCH=x86_64;PR_NUMBER=${{ needs.check-pull-request.outputs.pr_number }}"
205-
timeout: 90
246+
timeout: 120
206247
secrets: "QUAY_USERNAME=${{ secrets.QUAY_USERNAME }};QUAY_PASSWORD=${{ secrets.QUAY_PASSWORD }};STAGE_REDHAT_IO_USERNAME=${{ secrets.STAGE_REDHAT_IO_USERNAME }};STAGE_REDHAT_IO_TOKEN=${{ secrets.STAGE_REDHAT_IO_TOKEN }};DOWNLOAD_NODE=${{ secrets.DOWNLOAD_NODE }}"
69.9 KB
Binary file not shown.
12.1 KB
Binary file not shown.
69.9 KB
Binary file not shown.
12.1 KB
Binary file not shown.

tests/files/centos-stream-9.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,6 @@
3131
"baseurl": "https://composes.stream.centos.org/production/latest-CentOS-Stream/compose/RT/x86_64/os/",
3232
"gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n",
3333
"check_gpg": true
34-
},
35-
{
36-
"name": "packages",
37-
"baseurl": "http://192.168.100.1/packages/"
3834
}
3935
]
40-
}
36+
}

tests/files/rhel-9-8-0.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,6 @@
2626
"name": "rt",
2727
"baseurl": "http://REPLACE_ME_HERE/rhel-9/nightly/RHEL-9/latest-RHEL-9.8.0/compose/RT/x86_64/os/",
2828
"gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\n\nmQINBErgSTsBEACh2A4b0O9t+vzC9VrVtL1AKvUWi9OPCjkvR7Xd8DtJxeeMZ5eF\n0HtzIG58qDRybwUe89FZprB1ffuUKzdE+HcL3FbNWSSOXVjZIersdXyH3NvnLLLF\n0DNRB2ix3bXG9Rh/RXpFsNxDp2CEMdUvbYCzE79K1EnUTVh1L0Of023FtPSZXX0c\nu7Pb5DI5lX5YeoXO6RoodrIGYJsVBQWnrWw4xNTconUfNPk0EGZtEnzvH2zyPoJh\nXGF+Ncu9XwbalnYde10OCvSWAZ5zTCpoLMTvQjWpbCdWXJzCm6G+/hx9upke546H\n5IjtYm4dTIVTnc3wvDiODgBKRzOl9rEOCIgOuGtDxRxcQkjrC+xvg5Vkqn7vBUyW\n9pHedOU+PoF3DGOM+dqv+eNKBvh9YF9ugFAQBkcG7viZgvGEMGGUpzNgN7XnS1gj\n/DPo9mZESOYnKceve2tIC87p2hqjrxOHuI7fkZYeNIcAoa83rBltFXaBDYhWAKS1\nPcXS1/7JzP0ky7d0L6Xbu/If5kqWQpKwUInXtySRkuraVfuK3Bpa+X1XecWi24JY\nHVtlNX025xx1ewVzGNCTlWn1skQN2OOoQTV4C8/qFpTW6DTWYurd4+fE0OJFJZQF\nbuhfXYwmRlVOgN5i77NTIJZJQfYFj38c/Iv5vZBPokO6mffrOTv3MHWVgQARAQAB\ntDNSZWQgSGF0LCBJbmMuIChyZWxlYXNlIGtleSAyKSA8c2VjdXJpdHlAcmVkaGF0\nLmNvbT6JAjYEEwECACAFAkrgSTsCGwMGCwkIBwMCBBUCCAMEFgIDAQIeAQIXgAAK\nCRAZni+R/UMdUWzpD/9s5SFR/ZF3yjY5VLUFLMXIKUztNN3oc45fyLdTI3+UClKC\n2tEruzYjqNHhqAEXa2sN1fMrsuKec61Ll2NfvJjkLKDvgVIh7kM7aslNYVOP6BTf\nC/JJ7/ufz3UZmyViH/WDl+AYdgk3JqCIO5w5ryrC9IyBzYv2m0HqYbWfphY3uHw5\nun3ndLJcu8+BGP5F+ONQEGl+DRH58Il9Jp3HwbRa7dvkPgEhfFR+1hI+Btta2C7E\n0/2NKzCxZw7Lx3PBRcU92YKyaEihfy/aQKZCAuyfKiMvsmzs+4poIX7I9NQCJpyE\nIGfINoZ7VxqHwRn/d5mw2MZTJjbzSf+Um9YJyA0iEEyD6qjriWQRbuxpQXmlAJbh\n8okZ4gbVFv1F8MzK+4R8VvWJ0XxgtikSo72fHjwha7MAjqFnOq6eo6fEC/75g3NL\nGht5VdpGuHk0vbdENHMC8wS99e5qXGNDued3hlTavDMlEAHl34q2H9nakTGRF5Ki\nJUfNh3DVRGhg8cMIti21njiRh7gyFI2OccATY7bBSr79JhuNwelHuxLrCFpY7V25\nOFktl15jZJaMxuQBqYdBgSay2G0U6D1+7VsWufpzd/Abx1/c3oi9ZaJvW22kAggq\ndzdA27UUYjWvx42w9menJwh/0jeQcTecIUd0d0rFcw/c1pvgMMl/Q73yzKgKYw==\n=zbHE\n-----END PGP PUBLIC KEY BLOCK-----\n-----BEGIN PGP PUBLIC KEY BLOCK-----\n\nmQINBFsy23UBEACUKSphFEIEvNpy68VeW4Dt6qv+mU6am9a2AAl10JANLj1oqWX+\noYk3en1S6cVe2qehSL5DGVa3HMUZkP3dtbD4SgzXzxPodebPcr4+0QNWigkUisri\nXGL5SCEcOP30zDhZvg+4mpO2jMi7Kc1DLPzBBkgppcX91wa0L1pQzBcvYMPyV/Dh\nKbQHR75WdkP6OA2JXdfC94nxYq+2e0iPqC1hCP3Elh+YnSkOkrawDPmoB1g4+ft/\nxsiVGVy/W0ekXmgvYEHt6si6Y8NwXgnTMqxeSXQ9YUgVIbTpsxHQKGy76T5lMlWX\n4LCOmEVomBJg1SqF6yi9Vu8TeNThaDqT4/DddYInd0OO69s0kGIXalVgGYiW2HOD\nx2q5R1VGCoJxXomz+EbOXY+HpKPOHAjU0DB9MxbU3S248LQ69nIB5uxysy0PSco1\nsdZ8sxRNQ9Dw6on0Nowx5m6Thefzs5iK3dnPGBqHTT43DHbnWc2scjQFG+eZhe98\nEll/kb6vpBoY4bG9/wCG9qu7jj9Z+BceCNKeHllbezVLCU/Hswivr7h2dnaEFvPD\nO4GqiWiwOF06XaBMVgxA8p2HRw0KtXqOpZk+o+sUvdPjsBw42BB96A1yFX4jgFNA\nPyZYnEUdP6OOv9HSjnl7k/iEkvHq/jGYMMojixlvXpGXhnt5jNyc4GSUJQARAQAB\ntDNSZWQgSGF0LCBJbmMuIChhdXhpbGlhcnkga2V5KSA8c2VjdXJpdHlAcmVkaGF0\nLmNvbT6JAjkEEwECACMFAlsy23UCGwMHCwkIBwMCAQYVCAIJCgsEFgIDAQIeAQIX\ngAAKCRD3b2bD1AgnknqOD/9fB2ASuG2aJIiap4kK58R+RmOVM4qgclAnaG57+vjI\nnKvyfV3NH/keplGNRxwqHekfPCqvkpABwhdGEXIE8ILqnPewIMr6PZNZWNJynZ9i\neSMzVuCG7jDoGyQ5/6B0f6xeBtTeBDiRl7+Alehet1twuGL1BJUYG0QuLgcEzkaE\n/gkuumeVcazLzz7L12D22nMk66GxmgXfqS5zcbqOAuZwaA6VgSEgFdV2X2JU79zS\nBQJXv7NKc+nDXFG7M7EHjY3Rma3HXkDbkT8bzh9tJV7Z7TlpT829pStWQyoxKCVq\nsEX8WsSapTKA3P9YkYCwLShgZu4HKRFvHMaIasSIZWzLu+RZH/4yyHOhj0QB7XMY\neHQ6fGSbtJ+K6SrpHOOsKQNAJ0hVbSrnA1cr5+2SDfel1RfYt0W9FA6DoH/S5gAR\ndzT1u44QVwwp3U+eFpHphFy//uzxNMtCjjdkpzhYYhOCLNkDrlRPb+bcoL/6ePSr\n016PA7eEnuC305YU1Ml2WcCn7wQV8x90o33klJmEkWtXh3X39vYtI4nCPIvZn1eP\nVy+F+wWt4vN2b8oOdlzc2paOembbCo2B+Wapv5Y9peBvlbsDSgqtJABfK8KQq/jK\nYl3h5elIa1I3uNfczeHOnf1enLOUOlq630yeM/yHizz99G1g+z/guMh5+x/OHraW\niA==\n=+Gxh\n-----END PGP PUBLIC KEY BLOCK-----"
29-
},
30-
{
31-
"name": "packages",
32-
"baseurl": "http://192.168.100.1/packages/"
3329
}
3430
]
3531
}

0 commit comments

Comments
 (0)