commit:     ec3f4cd6cbeddb065b35d3c1911b8141a4c6787f
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Mon May  2 12:11:21 2022 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Mon May  2 12:11:21 2022 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=ec3f4cd6

Drop repoman CI in favour of pkgcheck

Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 .github/workflows/repoman.yml    | 22 ----------------------
 scripts/setup-and-run-repoman.sh | 30 ------------------------------
 2 files changed, 52 deletions(-)

diff --git a/.github/workflows/repoman.yml b/.github/workflows/repoman.yml
deleted file mode 100644
index afea3ae53..000000000
--- a/.github/workflows/repoman.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-name: repoman
-
-on:
-  push:
-    branches: [ master ]
-  pull_request:
-    branches: [ master ]
-  schedule:
-    - cron: '0 0 * * *'
-
-jobs:
-  build:
-    runs-on: ubuntu-latest
-    steps:
-    - uses: actions/checkout@v2
-    - name: Setup master gentoo repository
-      run: |
-        ./scripts/setup-master-gentoo.sh
-    - name: Setup and run Repoman
-      run: |
-        ./scripts/setup-and-run-repoman.sh
-

diff --git a/scripts/setup-and-run-repoman.sh b/scripts/setup-and-run-repoman.sh
deleted file mode 100755
index e2e10c78e..000000000
--- a/scripts/setup-and-run-repoman.sh
+++ /dev/null
@@ -1,30 +0,0 @@
-#! /usr/bin/env bash
-# Maintainer: Andrew Ammerlaan <[email protected]>
-#
-# This sets up repoman and runs the latest version
-#
-# TODO: Force repoman to output in colour
-
-### Setup prerequisites
-python3 -m pip install --upgrade pip
-pip install lxml pyyaml
-sudo groupadd -g 250 portage
-sudo useradd -g portage -d /var/tmp/portage -s /bin/false -u 250 portage
-
-### Sync the portage repository
-git clone https://github.com/gentoo/portage.git
-cd portage
-
-# Get all versions, and read into array
-mapfile -t RM_VERSIONS < <( git tag | grep portage | sort -uV )
-
-# Select latests version (last element in array)
-RM_VERS="${RM_VERSIONS[-1]}"
-
-# Checkout this version
-git checkout tags/${RM_VERS} -b ${RM_VERS}
-
-cd ..
-
-### Run repoman
-python3 portage/repoman/bin/repoman -dx full

Reply via email to