Skip to content

Commit

Permalink
Attempts to get reprotest working in CI
Browse files Browse the repository at this point in the history
Force buster platform, even in CI Focal environment

Modifies pkg path for lookup in CI

Moves reprotest suite to docker, to use Buster reprotest.
  • Loading branch information
Conor Schaefer committed Jan 16, 2021
1 parent 7686880 commit 43d6a6d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ common-steps:
export PKG_PATH=~/packaging/$PKG_NAME/dist/$PKG_NAME-$VERSION_TO_BUILD.tar.gz
export PKG_VERSION=$VERSION_TO_BUILD
make $PKG_NAME
ls ~/debbuild/packaging/*.deb
ls ~/project/build/debbuild/packaging/*.deb
- &builddebianpackagefromexistingtarball
run:
Expand Down Expand Up @@ -288,8 +288,8 @@ common-steps:
version: 2.1
jobs:
tests:
machine:
image: ubuntu-2004:202010-01
docker:
- image: circleci/python:3.7-buster
steps:
- checkout
- run:
Expand Down
2 changes: 1 addition & 1 deletion scripts/build-debianpackage
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ mkdir -p "$TOP_BUILDDIR"
rm -rf "${TOP_BUILDDIR:?}/${PKG_NAME}"
mkdir -p "${TOP_BUILDDIR}/${PKG_NAME}"
# Move changelog into place (we have separate changelogs for each platform)
PLATFORM="$(lsb_release -sc)"
PLATFORM="${PKG_PLATFORM:-buster}"

# Validate required args.
if [[ -z "${PKG_NAME:-}" ]]; then
Expand Down

0 comments on commit 43d6a6d

Please sign in to comment.