Skip to content

Commit

Permalink
Merge branch 'master' into meiji163-unthrottle-store
Browse files Browse the repository at this point in the history
  • Loading branch information
meiji163 authored Nov 18, 2023
2 parents c40872d + bc46ca8 commit 79cac6c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion Dockerfile.test
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
FROM golang:1.16-buster
FROM golang:1.16-stretch
LABEL maintainer="github@github.com"

# Update stretch repositories
RUN sed -i -e 's/deb.debian.org/archive.debian.org/g' \
-e 's|security.debian.org|archive.debian.org/|g' \
-e '/stretch-updates/d' /etc/apt/sources.list

RUN useradd -m testuser

RUN apt-get update
Expand Down
2 changes: 1 addition & 1 deletion script/build-deploy-tarball
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ cp ${tarball}.gz "$BUILD_ARTIFACT_DIR"/freno/
### HACK HACK HACK ###
# blame @carlosmn, @mattr, @timvaillancourt and @rashiq
# Allow builds on buster to also be used for focal
focal_tarball_name=$(echo $(basename "${tarball}") | sed s/-buster-/-focal-/)
focal_tarball_name=$(echo $(basename "${tarball}") | sed s/-stretch-/-focal-/)
cp ${tarball}.gz "$BUILD_ARTIFACT_DIR/freno/${focal_tarball_name}.gz"

0 comments on commit 79cac6c

Please sign in to comment.