Revert "Add 'nightly' flag and build with this for nightlies."

This reverts commit f81f5a2090.
This commit is contained in:
John MacFarlane 2022-04-12 10:06:02 -07:00
parent ebad679107
commit f460936528
3 changed files with 4 additions and 23 deletions

View file

@ -28,7 +28,7 @@ jobs:
cabal v2-build --dependencies-only
- name: Build
run: |
cabal v2-install -fnightly
cabal v2-install
strip $HOME/.cabal/bin/pandoc
- name: Install artifact
run: |
@ -58,7 +58,7 @@ jobs:
for /f %%a in ('powershell -Command "Get-Date -format yyyy-MM-dd"') do set THEDATE=%%a
set ARTIFACTS=%CD%\nightly-windows\pandoc-nightly-windows-%THEDATE%
mkdir %ARTIFACTS%
stack build --flag pandoc:nightly pandoc
stack build pandoc
forfiles /P .\.stack-work\install /M pandoc*.exe /S /C "cmd /C copy @path %%ARTIFACTS%%"
copy COPYRIGHT %ARTIFACTS%
ren %ARTIFACTS%\COPYRIGHT COPYRIGHT.txt
@ -82,7 +82,7 @@ jobs:
run: |
export ARTIFACTS=nightly-macos/pandoc-nightly-macos-$(date +%Y-%m-%d)
mkdir -p ${ARTIFACTS}
stack build --flag pandoc:nightly pandoc
stack build pandoc
for f in $(find .stack-work/install -name 'pandoc*' -perm +001 -type f); do cp $f ${ARTIFACTS}/; done
mv ${ARTIFACTS}/pandoc ${ARTIFACTS}/pandoc
cp COPYRIGHT ${ARTIFACTS}/

View file

@ -428,10 +428,6 @@ flag trypandoc
Description: Build trypandoc cgi executable.
Default: False
flag nightly
Description: Add '-nightly-DATE' to the output of '--version'.
Default: False
common common-options
default-language: Haskell2010
build-depends: base >= 4.12 && < 5
@ -535,8 +531,6 @@ library
zlib >= 0.5 && < 0.7
if !os(windows)
build-depends: unix >= 2.4 && < 2.8
if flag(nightly)
cpp-options: -DNIGHTLY
if flag(lua53)
build-depends: hslua >= 2.1 && < 2.2,
hslua-aeson >= 2.1 && < 2.3

View file

@ -56,8 +56,6 @@ import Text.Pandoc.Filter (Filter (..))
import Text.Pandoc.Highlighting (highlightingStyles)
import Text.Pandoc.Shared (ordNub, elemText, safeStrRead, defaultUserDataDir)
import Text.Printf
import Data.Time.Clock (UTCTime(utctDay), getCurrentTime)
import Data.Time.Format (defaultTimeLocale, iso8601DateFormat, formatTime)
#ifdef EMBED_DATA_FILES
import Text.Pandoc.Data (dataFiles)
@ -954,20 +952,9 @@ options =
openlibs
getglobal "_VERSION"
peek top
versionSuffix <-
#ifdef NIGHTLY
("-nightly-" ++)
. formatTime defaultTimeLocale
(iso8601DateFormat Nothing)
. utctDay
<$> Data.Time.Clock.getCurrentTime
#else
pure ""
#endif
UTF8.hPutStrLn stdout
$ T.pack
$ prg ++ " " ++
T.unpack pandocVersion ++ versionSuffix ++
$ prg ++ " " ++ T.unpack pandocVersion ++
compileInfo ++ "\nScripting engine: " ++ luaVersion ++
"\nUser data directory: " ++ defaultDatadir ++
('\n':copyrightMessage)