Skip to content

Commit

Permalink
Merge pull request #669 from serokell/krendelhoff/chore-fix-fedora-up…
Browse files Browse the repository at this point in the history
…load

[Chore] Fix fedora upload
  • Loading branch information
krendelhoff2 authored Jun 13, 2023
2 parents dcc0a1d + cf2aced commit 1d9ec89
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 9 deletions.
6 changes: 0 additions & 6 deletions .buildkite/pipeline-for-tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@ steps:
depends_on:
- "build-ubuntu-source-packages"
key: sign-ubuntu-source-packages
agents:
queue: "docker"
commands:
- eval "$SET_VERSION"
- buildkite-agent artifact download "out/*" . --step build-ubuntu-source-packages
Expand All @@ -54,8 +52,6 @@ steps:
depends_on:
- "build-fedora-source-packages"
key: sign-fedora-source-packages
agents:
queue: "docker"
commands:
- eval "$SET_VERSION"
- buildkite-agent artifact download "out/*" . --step build-fedora-source-packages
Expand Down Expand Up @@ -111,8 +107,6 @@ steps:
- label: Sign source packages built from static binaries
key: sign-source-packages-built-from-static-binaries
if: build.tag =~ /^v.*-1/
agents:
queue: "docker"
depends_on:
- "build-via-docker"
commands:
Expand Down
2 changes: 1 addition & 1 deletion docker/build/ubuntu/upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def upload_ubuntu(args: Arguments):

for f in filter(lambda x: x.endswith(".changes"), packages):
subprocess.call(
f"execute-dput -c dput.cfg {launchpad_ppa} {os.path.join(source_packages_path, f)}",
f"execute-dput -c dput.cfg {launchpad_ppa} {f}",
shell=True,
)

Expand Down
3 changes: 1 addition & 2 deletions docker/build/util/upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@
"--directory",
"-d",
help="provide a directory with packages to upload",
default=f"{os.path.join(os.getcwd(), '.')}",
type=os.path.abspath,
default=".",
)
parser.add_argument(
"--os",
Expand Down

0 comments on commit 1d9ec89

Please sign in to comment.