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

add subrepo label #2893

Merged
merged 2 commits into from
Jan 8, 2025
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/autobuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,15 +93,15 @@ jobs:
subatomic-cli upload --prune \
--server https://subatomic.fyralabs.com \
--token ${{ secrets.SUBATOMIC_TOKEN }} \
terra${{ matrix.version }}${{ matrix.pkg.labels['extra'] && '-extras' }} anda-build/rpm/rpms/*
terra${{ matrix.version }}${{ matrix.pkg.labels['subrepo'] && '-${{ matrix.pkg.labels.subrepo }}' || '' }} anda-build/rpm/rpms/*

- name: Upload source packages to subatomic
if: github.event_name == 'push'
run: |
subatomic-cli upload --prune \
--server https://subatomic.fyralabs.com \
--token ${{ secrets.SUBATOMIC_TOKEN }} \
terra${{ matrix.version }}${{ matrix.pkg.labels['extra'] && '-extras' }}-source anda-build/rpm/srpm/*
terra${{ matrix.version }}${{ matrix.pkg.labels['subrepo'] && '-${{ matrix.pkg.labels.subrepo }}' || '' }}-source anda-build/rpm/srpm/*

- name: Notify Madoguchi (Success)
if: success() && github.event_name == 'push'
Expand Down
2 changes: 1 addition & 1 deletion anda/apps/switcheroo-control/anda.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ project pkg {
spec = "switcheroo-control.spec"
}
labels {
extra = 1
subrepo = "extras"
}
}
2 changes: 1 addition & 1 deletion anda/desktops/gnome/gnome-shell/anda.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ project pkg {
spec = "gnome-shell.spec"
}
labels {
extra = 1
subrepo = "extras"
}
}
2 changes: 1 addition & 1 deletion anda/desktops/kde/kf6-kio/anda.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ project pkg {
spec = "kf6-kio.spec"
}
labels {
extra = 1
subrepo = "extras"
}
}
2 changes: 1 addition & 1 deletion anda/games/gamescope/anda.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ project pkg {
spec = "gamescope.spec"
}
labels {
extra = 1
subrepo = "extras"
}
}
3 changes: 1 addition & 2 deletions anda/lib/mesa/anda.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ project pkg {
}
labels {

extra = 1
subrepo = "mesa"
}
arches = ["x86_64", "i386", "aarch64"]
}
2 changes: 1 addition & 1 deletion anda/lib/openh264/anda.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ project pkg {
spec = "openh264.spec"
}
labels {
extra = 1
subrepo = "extras"
}
}
2 changes: 1 addition & 1 deletion anda/multimedia/carla/anda.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ project pkg {
}
labels {
nightly = 1
extra = 1
subrepo = "extras"
}
}
2 changes: 1 addition & 1 deletion anda/multimedia/rtaudio/anda.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ project pkg {
}
labels {
nightly = 1
extra = 1
subrepo = "extras"
}
}
2 changes: 1 addition & 1 deletion anda/multimedia/zrythm/anda.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ project pkg {
spec = "zrythm.spec"
}
labels {
extra = 1
subrepo = "extras"
}
}
Loading