-
Notifications
You must be signed in to change notification settings - Fork 66
Description
Problem
I'd like to use planck v2.26.0 on GitHub Actions on ubuntu.
When I install planck on ubuntu following the README instructions, I see:
$ plank --version
2.25.0Full steps taken on macOS
$ docker run -it ubuntuAnd then:
$ apt-get update
$ apt-get install software-properties-common
$ add-apt-repository ppa:mfikes/planck
$ apt-get update
$ apt-get install planck
$ planck --version
2.25.0Why is this a problem again?
As a part of ensuring that rewrite-clj continues to work with libraries that depend on it, I run their test suites against rewrite-clj master.
Zprint uses planck in its cljs test suite.
Its tests depended on a buggy behavior in planck v2.25.0 (TL;DR effectively this got fixed in v2.26.0: CLSJ-3324). Full deets here.
Zprint corrected its tests to work with planck v2.26.0.
But my canary tests run on GitHub Actions on ubuntu, within which my workflow installs v2.25.0 as the latest version of planck.
And the zprint tests now fail on v2.25.0. 🙂
So...
If it is not a big chore, I'd love to see planck v2.26.0 binaries for ubuntu.
I do see #1087.. maybe that is a blocker?
Am willing to help in any way I can.