-
Notifications
You must be signed in to change notification settings - Fork 6
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
feat: running workflows on container with reusable actions #69
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
4183a61
feat: publish packages on container with reusable actions
khos2ow a1dce7e
feat: rebuild sources on container with reusable actions
khos2ow ec51c65
feat: build deb v5 on container with reusable actions
khos2ow f3154da
feat: deprecate and remove builder-deb-v4
khos2ow c3238b0
feat: run test desktop installable on container
khos2ow File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,4 +1,4 @@ | ||
name: Package Builder Debian v4 | ||
name: Package Builder Debian v5 | ||
run-name: Build ${{ inputs.stage }} Packages ${{ inputs.distro }} ${{ inputs.codename }} ${{ inputs.arch }} | ||
|
||
on: | ||
|
@@ -61,7 +61,7 @@ on: | |
required: false | ||
|
||
concurrency: | ||
group: debian_builder_v4 | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
|
@@ -159,15 +159,17 @@ jobs: | |
echo "codenames=$(jq -n -c '$ARGS.positional' --args -- "${CODENAMES[@]}")" >> $GITHUB_OUTPUT | ||
echo "arches=$(jq -n -c '$ARGS.positional' --args -- "${ARCHES[@]}")" >> $GITHUB_OUTPUT | ||
echo "suites=$(jq -n -c "${SUITES}" '$ARGS.named')" >> $GITHUB_OUTPUT | ||
echo "runners=$(jq -n -c "$(jq -n -c --arg amd64 "X64" --arg arm64 "arm64" '$ARGS.named')" '$ARGS.named')" >> $GITHUB_OUTPUT | ||
echo "runners=$(jq -n -c "$(jq -n -c --arg amd64 "ubuntu-24.04" --arg arm64 "ubuntu-24.04-arm" '$ARGS.named')" '$ARGS.named')" >> $GITHUB_OUTPUT | ||
echo "includes=$(jq -n -c "[$(printf '%s\n' "${INCLUDES[@]}" | paste -sd,)]" '$ARGS.named')" >> $GITHUB_OUTPUT | ||
echo "excludes=$(jq -n -c "[$(printf '%s\n' "${EXCLUDES[@]}" | paste -sd,)]" '$ARGS.named')" >> $GITHUB_OUTPUT | ||
|
||
# build packages and sources | ||
build: | ||
runs-on: [self-hosted, Linux, "${{ fromJSON(needs.matrix-builder.outputs.runners)[matrix.arch] }}", "${{ matrix.codename }}"] | ||
runs-on: ${{ fromJSON(needs.matrix-builder.outputs.runners)[matrix.arch] }} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. for my understanding, is there somewhere to see what this value looks like? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Check the comment below. |
||
needs: matrix-builder | ||
container: "ghcr.io/regolith-linux/ci-${{ matrix.distro }}:${{ matrix.codename }}-${{ matrix.arch }}" | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
stage: ${{ fromJSON(needs.matrix-builder.outputs.stages) }} | ||
distro: ${{ fromJSON(needs.matrix-builder.outputs.distros) }} | ||
|
@@ -184,11 +186,13 @@ jobs: | |
- name: Set Job Parameters | ||
id: init | ||
run: | | ||
echo "gh-repo-path=${{ github.workspace }}" >> $GITHUB_OUTPUT | ||
echo "changelogs-path=${{ github.workspace }}/changelogs" >> $GITHUB_OUTPUT | ||
echo "manifest-path=${{ github.workspace }}/manifests" >> $GITHUB_OUTPUT | ||
echo "package-build-path=${{ github.workspace }}/packages" >> $GITHUB_OUTPUT | ||
echo "package-publish-path=${{ github.workspace }}/publish" >> $GITHUB_OUTPUT | ||
export GH_WORKSPACE="/__w/voulage/voulage" | ||
|
||
echo "gh-repo-path=${GH_WORKSPACE}" >> $GITHUB_OUTPUT | ||
echo "changelogs-path=${GH_WORKSPACE}/changelogs" >> $GITHUB_OUTPUT | ||
echo "manifest-path=${GH_WORKSPACE}/manifests" >> $GITHUB_OUTPUT | ||
echo "package-build-path=${GH_WORKSPACE}/packages" >> $GITHUB_OUTPUT | ||
echo "package-publish-path=${GH_WORKSPACE}/publish" >> $GITHUB_OUTPUT | ||
echo "stage=${{ matrix.stage }}" >> $GITHUB_OUTPUT | ||
echo "distro=${{ matrix.distro }}" >> $GITHUB_OUTPUT | ||
echo "codename=${{ matrix.codename }}" >> $GITHUB_OUTPUT | ||
|
@@ -204,12 +208,9 @@ jobs: | |
mkdir -p ${{ steps.init.outputs.manifest-path }} || true | ||
|
||
sudo rm -rf /etc/apt/sources.list.d/regolith.list | ||
sudo apt update | ||
DEBIAN_FRONTEND=noninteractive sudo apt install -y --no-install-recommends jq git devscripts wget dput diffutils | ||
|
||
- name: Pull Manifest | ||
run: | | ||
set -e | ||
cp "${{ steps.init.outputs.manifest-path }}/${{ steps.init.outputs.distro }}/${{ steps.init.outputs.codename }}/${{ steps.init.outputs.suite }}-${{ steps.init.outputs.component }}/manifest.txt" ${{ steps.init.outputs.manifest-path }} || true | ||
echo "Current manifest:" | ||
cat ${{ steps.init.outputs.manifest-path }}/manifest.txt || true | ||
|
@@ -243,25 +244,21 @@ jobs: | |
cat ${{ steps.init.outputs.manifest-path }}/next-manifest.txt | ||
fi | ||
|
||
- name: Setup SSH agent | ||
uses: webfactory/[email protected] | ||
- name: Import GPG Key | ||
uses: regolith-linux/actions/import-gpg@main | ||
if: steps.changes.outputs.changed == 1 | ||
with: | ||
ssh-private-key: ${{ secrets.KAMATERA_SSH_KEY }} | ||
gpg-key: "${{ secrets.PACKAGE_PRIVATE_KEY2 }}" | ||
|
||
- name: Build Packages | ||
if: steps.changes.outputs.changed == 1 | ||
env: | ||
DEBEMAIL: "[email protected]" | ||
DEBFULLNAME: "Regolith Linux" | ||
DEBIAN_FRONTEND: noninteractive | ||
run: | | ||
set -e | ||
|
||
export DEBEMAIL="[email protected]" | ||
export DEBFULLNAME="Regolith Linux" | ||
export DEBIAN_FRONTEND=noninteractive | ||
|
||
mkdir -p ~/.gnupg/ | ||
printf "${{ secrets.PACKAGE_PRIVATE_KEY2 }}" | base64 --decode > ~/.gnupg/private.key | ||
gpg --batch --import ~/.gnupg/private.key | ||
|
||
${{ steps.init.outputs.gh-repo-path }}/.github/scripts/main.sh \ | ||
build \ | ||
--extension ${{ steps.init.outputs.gh-repo-path }}/.github/scripts/ext-debian.sh \ | ||
|
@@ -283,8 +280,8 @@ jobs: | |
|
||
mv ${{ steps.init.outputs.manifest-path }}/manifest.txt ${{ steps.init.outputs.manifest-path }}/${{ steps.init.outputs.distro }}_${{ steps.init.outputs.codename }}_${{ steps.init.outputs.suite }}-${{ steps.init.outputs.component }}_manifest.txt | ||
|
||
cat ${{ steps.init.outputs.changelogs-path }}/CHANGELOG_${{ steps.init.outputs.target }}.raw.txt | grep ^CHLOG: | cut -c 7- > ${{ steps.init.outputs.changelogs-path }}/CHANGELOG_${{ steps.init.outputs.target }}.txt | ||
cat ${{ steps.init.outputs.changelogs-path }}/CHANGELOG_${{ steps.init.outputs.target }}.raw.txt | grep ^SRCLOG: | cut -c 8- > ${{ steps.init.outputs.changelogs-path }}/SOURCELOG_${{ steps.init.outputs.target }}.txt | ||
grep "^CHLOG:" ${{ steps.init.outputs.changelogs-path }}/CHANGELOG_${{ steps.init.outputs.target }}.raw.txt | cut -c 7- > ${{ steps.init.outputs.changelogs-path }}/CHANGELOG_${{ steps.init.outputs.target }}.txt | ||
grep "^SRCLOG:" ${{ steps.init.outputs.changelogs-path }}/CHANGELOG_${{ steps.init.outputs.target }}.raw.txt | cut -c 8- > ${{ steps.init.outputs.changelogs-path }}/SOURCELOG_${{ steps.init.outputs.target }}.txt | ||
|
||
if [ ! -s ${{ steps.init.outputs.changelogs-path }}/CHANGELOG_${{ steps.init.outputs.target }}.txt ] ; then | ||
rm ${{ steps.init.outputs.changelogs-path }}/CHANGELOG_${{ steps.init.outputs.target }}.txt | ||
|
@@ -294,23 +291,36 @@ jobs: | |
rm ${{ steps.init.outputs.changelogs-path }}/SOURCELOG_${{ steps.init.outputs.target }}.txt | ||
fi | ||
|
||
- name: Deploy via rsync | ||
- name: Setup SSH | ||
uses: regolith-linux/actions/setup-ssh@main | ||
if: steps.changes.outputs.changed == 1 | ||
run: | | ||
set -e | ||
set -x | ||
|
||
ssh-keyscan -H ${{ secrets.KAMATERA_HOSTNAME2 }} >> ~/.ssh/known_hosts | ||
with: | ||
ssh-host: "${{ secrets.KAMATERA_HOSTNAME2 }}" | ||
ssh-key: "${{ secrets.KAMATERA_SSH_KEY }}" | ||
|
||
for i in 1 2 3 4 5; do | ||
echo "Attempt $i" | ||
rsync \ | ||
-avzhH \ | ||
${{ steps.init.outputs.package-publish-path }}/* \ | ||
root@${{ secrets.KAMATERA_HOSTNAME2 }}:/opt/archives/packages/ && break || sleep 5 | ||
done | ||
- name: Upload Package | ||
uses: regolith-linux/actions/upload-files@main | ||
if: steps.changes.outputs.changed == 1 | ||
env: | ||
server-address: "${{ secrets.KAMATERA_HOSTNAME2 }}" | ||
server-username: "${{ secrets.KAMATERA_USERNAME }}" | ||
with: | ||
upload-from: "${{ steps.init.outputs.package-publish-path }}" | ||
upload-pattern: "*" | ||
upload-to-base: "/opt/archives/packages/" | ||
upload-to-folder: "voulage/" | ||
|
||
rsync --ignore-missing-args ${{ steps.init.outputs.changelogs-path }}/SOURCELOG_${{ steps.init.outputs.target }}.txt root@${{ secrets.KAMATERA_HOSTNAME2 }}:/opt/archives/workspace/ | ||
- name: Upload SourceLog | ||
uses: regolith-linux/actions/upload-files@main | ||
if: steps.changes.outputs.changed == 1 | ||
env: | ||
server-address: "${{ secrets.KAMATERA_HOSTNAME2 }}" | ||
server-username: "${{ secrets.KAMATERA_USERNAME }}" | ||
with: | ||
upload-from: "${{ steps.init.outputs.changelogs-path }}" | ||
upload-pattern: "SOURCELOG_${{ steps.init.outputs.target }}.txt" | ||
upload-to-base: "/opt/archives/workspace/" | ||
upload-to-folder: "voulage/" | ||
|
||
- name: Log Build Output | ||
if: steps.changes.outputs.changed == 1 | ||
|
@@ -372,9 +382,9 @@ jobs: | |
with: | ||
file_pattern: "*" | ||
commit_message: "chore: update ${{ inputs.stage }} manifest for all packages" | ||
commit_user_name: regolith-bot | ||
commit_user_name: regolith-ci-bot | ||
commit_user_email: [email protected] | ||
commit_author: "regolith-bot <[email protected]>" | ||
commit_author: "regolith-ci-bot <[email protected]>" | ||
|
||
# calculate changelogs | ||
changelogs: | ||
|
@@ -428,37 +438,9 @@ jobs: | |
packages-path: /opt/archives/packages/ | ||
secrets: inherit | ||
|
||
# create a release with changlogs | ||
release: | ||
runs-on: ubuntu-24.04 | ||
needs: [manifests, changelogs, publish] | ||
if: ${{ !failure() && !cancelled() && needs.changelogs.outputs.package-changed != 0 }} | ||
steps: | ||
- name: Download Artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
path: changelogs | ||
pattern: CHANGELOG_* | ||
merge-multiple: true | ||
|
||
- name: Prepare Release | ||
id: prepare | ||
run: | | ||
echo "TIMESTAMP=$(date +%Y%m%d_%H%M%S)" >> $GITHUB_OUTPUT | ||
find changelogs/ -name CHANGELOG_\*.txt -exec sh -c 'cat "$1" >> CHANGELOG.txt' -- {} \; | ||
cat CHANGELOG.txt | ||
|
||
- uses: softprops/action-gh-release@v2 | ||
with: | ||
body: See CHANGELOG.txt for updates and manifests for current state of repos. | ||
name: Package Build ${{ steps.prepare.outputs.TIMESTAMP }} | ||
tag_name: pkgbuild-${{ steps.prepare.outputs.TIMESTAMP }} | ||
files: | | ||
*.txt | ||
|
||
# run the tests | ||
test: | ||
needs: [manifests, changelogs, release] | ||
needs: [manifests, changelogs, publish] | ||
if: ${{ !failure() && !cancelled() }} | ||
uses: ./.github/workflows/test-desktop-installable2.yml | ||
with: | ||
|
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 |
---|---|---|
|
@@ -46,17 +46,22 @@ on: | |
jobs: | ||
publish: | ||
runs-on: ubuntu-24.04 | ||
container: "ghcr.io/regolith-linux/ci-ubuntu:noble-amd64" | ||
env: | ||
server-address: "${{ secrets.KAMATERA_HOSTNAME2 }}" | ||
server-username: "${{ secrets.KAMATERA_USERNAME }}" | ||
steps: | ||
- name: Setup SSH agent | ||
uses: webfactory/[email protected] | ||
- name: Setup SSH | ||
uses: regolith-linux/actions/setup-ssh@main | ||
with: | ||
ssh-private-key: ${{ secrets.KAMATERA_SSH_KEY }} | ||
ssh-host: "${{ env.server-address }}" | ||
ssh-key: "${{ secrets.KAMATERA_SSH_KEY }}" | ||
|
||
- name: Publish Packages | ||
run: | | ||
set -e | ||
set -x | ||
|
||
ssh-keyscan -H ${{ secrets.KAMATERA_HOSTNAME2 }} >> ~/.ssh/known_hosts | ||
ssh root@${{ secrets.KAMATERA_HOSTNAME2 }} "publish-repos.sh \"${{ inputs.packages-path }}\" \"${{ inputs.only-distro }}\" \"${{ inputs.only-codename }}\" \"${{ inputs.only-component }}\"" | ||
ssh root@${{ secrets.KAMATERA_HOSTNAME2 }} "find \"${{ inputs.packages-path }}\" " | ||
- name: Publish Repo | ||
uses: regolith-linux/actions/publish-repo@main | ||
with: | ||
packages-path-base: "${{ inputs.packages-path }}" | ||
packages-path-subfolder: "voulage/" | ||
only-distro: "${{ inputs.only-distro }}" | ||
only-codename: "${{ inputs.only-codename }}" | ||
only-component: "${{ inputs.only-component }}" |
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,4 +1,5 @@ | ||
name: Rebuild Sources | ||
run-name: Rebuild Sources ${{ inputs.only-distro }} ${{ inputs.only-codename }} ${{ inputs.only-component }} ${{ inputs.only-package }} | ||
|
||
on: | ||
workflow_dispatch: | ||
|
@@ -63,90 +64,29 @@ on: | |
jobs: | ||
rebuild: | ||
runs-on: ubuntu-24.04 | ||
container: "ghcr.io/regolith-linux/ci-ubuntu:noble-amd64" | ||
env: | ||
server-address: "${{ secrets.KAMATERA_HOSTNAME2 }}" | ||
server-username: "${{ secrets.KAMATERA_USERNAME }}" | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set Job Parameters | ||
id: init | ||
run: | | ||
echo "package-build-path=${{ github.workspace }}/packages" >> $GITHUB_OUTPUT | ||
|
||
- name: Environment Setup | ||
run: | | ||
set -e | ||
|
||
rm -Rf "${{ steps.init.outputs.package-build-path }}" | ||
|
||
sudo apt update | ||
DEBIAN_FRONTEND=noninteractive sudo apt install -y --no-install-recommends git devscripts wget dput | ||
|
||
export DEBEMAIL="[email protected]" | ||
export DEBFULLNAME="Regolith Linux" | ||
export DEBIAN_FRONTEND=noninteractive | ||
|
||
mkdir -p ~/.gnupg/ | ||
printf "${{ secrets.PACKAGE_PRIVATE_KEY2 }}" | base64 --decode > ~/.gnupg/private.key | ||
gpg --batch --import ~/.gnupg/private.key | ||
|
||
- name: Setup SSH agent | ||
uses: webfactory/[email protected] | ||
- name: Import GPG Key | ||
uses: regolith-linux/actions/import-gpg@main | ||
with: | ||
ssh-private-key: ${{ secrets.KAMATERA_SSH_KEY }} | ||
|
||
- name: Pull Packages | ||
run: | | ||
set -e | ||
set -x | ||
|
||
ssh-keyscan -H ${{ secrets.KAMATERA_HOSTNAME2 }} >> ~/.ssh/known_hosts | ||
mkdir -p "${{ steps.init.outputs.package-build-path }}" | ||
gpg-key: "${{ secrets.PACKAGE_PRIVATE_KEY2 }}" | ||
|
||
ssh root@${{ secrets.KAMATERA_HOSTNAME2 }} "get-published-sources.sh --workspace-path \"${{ inputs.pull-from }}\"" | ||
|
||
rsync \ | ||
-avzh \ | ||
--exclude="*.*/" \ | ||
--include="*/" \ | ||
--include="*.orig.tar.gz" \ | ||
--include="*.debian.tar.xz" \ | ||
--include="*.diff.gz" \ | ||
--exclude="*" \ | ||
root@${{ secrets.KAMATERA_HOSTNAME2 }}:${{ inputs.pull-from }} \ | ||
"${{ steps.init.outputs.package-build-path }}" | ||
- name: Setup SSH | ||
uses: regolith-linux/actions/setup-ssh@main | ||
with: | ||
ssh-host: "${{ env.server-address }}" | ||
ssh-key: "${{ secrets.KAMATERA_SSH_KEY }}" | ||
|
||
- name: Rebuild Sources | ||
run: | | ||
set -e | ||
|
||
command_arguments=(--pkg-build-path "${{ steps.init.outputs.package-build-path }}") | ||
|
||
if [ -n "${{ inputs.only-distro }}" ]; then | ||
command_arguments+=(--only-distro "${{ inputs.only-distro }}") | ||
fi | ||
if [ -n "${{ inputs.only-codename }}" ]; then | ||
command_arguments+=(--only-codename "${{ inputs.only-codename }}") | ||
fi | ||
if [ -n "${{ inputs.only-component }}" ]; then | ||
command_arguments+=(--only-component "${{ inputs.only-component }}") | ||
fi | ||
if [ -n "${{ inputs.only-package }}" ]; then | ||
command_arguments+=(--only-package "${{ inputs.only-package }}") | ||
fi | ||
|
||
./.github/scripts/rebuild-sources.sh ${command_arguments[@]} | ||
|
||
- name: Deploy via rsync | ||
run: | | ||
set -e | ||
set -x | ||
|
||
for i in 1 2 3 4 5; do | ||
echo "Attempt $i" | ||
rsync \ | ||
-avzhH \ | ||
${{ steps.init.outputs.package-build-path }}/* \ | ||
root@${{ secrets.KAMATERA_HOSTNAME2 }}:${{ inputs.push-to }} && break || sleep 5 | ||
done | ||
|
||
ssh root@${{ secrets.KAMATERA_HOSTNAME2 }} "cleanup-workspace.sh --workspace-path \"${{ inputs.pull-from }}\"" | ||
uses: regolith-linux/actions/rebuild-sources@main | ||
with: | ||
pull-from-base: "${{ inputs.pull-from }}" | ||
push-to-base: "${{ inputs.push-to }}" | ||
workspace-subfolder: "voulage/" | ||
only-distro: "${{ inputs.only-distro }}" | ||
only-codename: "${{ inputs.only-codename }}" | ||
only-component: "${{ inputs.only-component }}" | ||
only-package: "${{ inputs.only-package }}" |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is json values for
runners
for eacharch