2019-09-17 19:01:09 +02:00
|
|
|
name: Nightly
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
2020-10-06 08:59:17 +02:00
|
|
|
- cron: '53 7 * * *'
|
2019-09-17 19:01:09 +02:00
|
|
|
|
2022-04-05 05:58:46 +02:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2019-09-17 19:01:09 +02:00
|
|
|
jobs:
|
|
|
|
linux:
|
|
|
|
|
2020-06-15 01:45:01 +02:00
|
|
|
runs-on: ubuntu-18.04
|
2019-09-17 19:01:09 +02:00
|
|
|
steps:
|
2022-03-25 01:51:31 +01:00
|
|
|
- uses: actions/checkout@v3
|
2021-03-06 21:47:42 +01:00
|
|
|
|
|
|
|
- name: Install recent cabal/ghc
|
|
|
|
uses: haskell/actions/setup@v1
|
|
|
|
with:
|
2021-11-18 02:29:01 +01:00
|
|
|
ghc-version: '8.10.7'
|
2021-03-06 21:47:42 +01:00
|
|
|
cabal-version: '3.2'
|
|
|
|
|
2019-09-17 19:01:09 +02:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2020-04-15 19:41:47 +02:00
|
|
|
ghc --version
|
|
|
|
cabal --version
|
2019-09-17 19:01:09 +02:00
|
|
|
cabal v2-update
|
2021-04-19 21:59:11 +02:00
|
|
|
cabal v2-build --dependencies-only
|
2019-09-18 06:05:04 +02:00
|
|
|
- name: Build
|
2019-09-17 19:01:09 +02:00
|
|
|
run: |
|
2022-04-12 02:17:11 +02:00
|
|
|
cabal v2-install -fnightly
|
2020-09-23 18:30:14 +02:00
|
|
|
strip $HOME/.cabal/bin/pandoc
|
2019-09-17 19:01:09 +02:00
|
|
|
- name: Install artifact
|
|
|
|
run: |
|
2019-09-20 17:25:46 +02:00
|
|
|
export ARTIFACTS=nightly-linux/pandoc-nightly-linux-$(date +%Y-%m-%d)
|
2019-09-17 19:01:09 +02:00
|
|
|
mkdir -p ${ARTIFACTS}
|
2020-09-23 18:30:14 +02:00
|
|
|
cp $HOME/.cabal/bin/pandoc ${ARTIFACTS}/
|
|
|
|
cp COPYRIGHT ${ARTIFACTS}/
|
|
|
|
echo "Built from ${GITHUB_SHA}" > ${ARTIFACTS}/README.nightly.txt
|
2019-09-17 19:01:09 +02:00
|
|
|
- uses: actions/upload-artifact@master
|
|
|
|
with:
|
2019-09-18 07:21:03 +02:00
|
|
|
name: nightly-linux
|
2019-09-18 18:08:45 +02:00
|
|
|
path: nightly-linux
|
2019-09-17 19:01:09 +02:00
|
|
|
|
|
|
|
windows:
|
|
|
|
|
2020-06-15 01:41:12 +02:00
|
|
|
runs-on: windows-2019
|
2019-09-17 19:01:09 +02:00
|
|
|
|
|
|
|
steps:
|
2022-03-25 01:51:31 +01:00
|
|
|
- uses: actions/checkout@v3
|
2019-09-17 19:01:09 +02:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2020-09-23 18:30:14 +02:00
|
|
|
stack update
|
|
|
|
stack build --dependencies-only pandoc
|
2019-09-18 06:05:04 +02:00
|
|
|
- name: Build artifacts
|
2019-09-17 19:01:09 +02:00
|
|
|
shell: cmd
|
|
|
|
run: |
|
2019-09-19 18:09:41 +02:00
|
|
|
for /f %%a in ('powershell -Command "Get-Date -format yyyy-MM-dd"') do set THEDATE=%%a
|
2019-09-21 19:35:31 +02:00
|
|
|
set ARTIFACTS=%CD%\nightly-windows\pandoc-nightly-windows-%THEDATE%
|
2019-09-17 19:01:09 +02:00
|
|
|
mkdir %ARTIFACTS%
|
2022-04-12 02:17:11 +02:00
|
|
|
stack build --flag pandoc:nightly pandoc
|
2020-09-23 18:30:14 +02:00
|
|
|
forfiles /P .\.stack-work\install /M pandoc*.exe /S /C "cmd /C copy @path %%ARTIFACTS%%"
|
|
|
|
copy COPYRIGHT %ARTIFACTS%
|
|
|
|
ren %ARTIFACTS%\COPYRIGHT COPYRIGHT.txt
|
|
|
|
echo Built from %GITHUB_SHA% > %ARTIFACTS%\README.nightly.txt
|
2019-09-17 19:01:09 +02:00
|
|
|
- uses: actions/upload-artifact@master
|
|
|
|
with:
|
|
|
|
name: nightly-windows
|
2019-09-18 18:08:45 +02:00
|
|
|
path: nightly-windows
|
2019-09-17 19:01:09 +02:00
|
|
|
|
|
|
|
macos:
|
|
|
|
|
2020-06-15 01:41:12 +02:00
|
|
|
runs-on: macOS-10.15
|
2019-09-17 19:01:09 +02:00
|
|
|
|
|
|
|
steps:
|
2022-03-25 01:51:31 +01:00
|
|
|
- uses: actions/checkout@v3
|
2019-09-17 19:01:09 +02:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2020-09-23 18:30:14 +02:00
|
|
|
stack update
|
|
|
|
stack build --dependencies-only pandoc
|
|
|
|
- name: Build artifacts
|
2019-09-17 19:01:09 +02:00
|
|
|
run: |
|
2020-09-23 18:30:14 +02:00
|
|
|
export ARTIFACTS=nightly-macos/pandoc-nightly-macos-$(date +%Y-%m-%d)
|
2019-09-17 19:01:09 +02:00
|
|
|
mkdir -p ${ARTIFACTS}
|
2022-04-12 02:17:11 +02:00
|
|
|
stack build --flag pandoc:nightly pandoc
|
2020-09-23 18:30:14 +02:00
|
|
|
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}/
|
|
|
|
echo "Built from ${GITHUB_SHA}" > ${ARTIFACTS}/README.nightly.txt
|
2019-09-17 19:01:09 +02:00
|
|
|
- uses: actions/upload-artifact@master
|
|
|
|
with:
|
|
|
|
name: nightly-macos
|
2019-09-18 18:08:45 +02:00
|
|
|
path: nightly-macos
|
2019-09-17 19:01:09 +02:00
|
|
|
|