Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also .

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also .
base repository: latex3/l3build
base: 2021-05-06
head repository: latex3/l3build
compare: HEAD
Commits on May 13, 2021
Commits on Jul 08, 2021
Commits on Aug 05, 2021
Given that I have forgotten that again for the second time ...
Commits on Aug 07, 2021
Commits on Aug 15, 2021
Commits on Aug 28, 2021
@@ -0,0 +1,56 @@
# The test framework itself
#
luatex
#
# Required to build formats
#
latex-bin
luahbtex
platex
uplatex
tex
xetex
# Requirements for the tests
amsfonts
etex-pkg
#
# Support for typesetting the docs
#
alphalph
atbegshi
atveryend
amsmath
bigintcalc
bitset
booktabs
ec
colortbl
csquotes
enumitem
etexcmds
fancyvrb
gettitlestring
graphics
hologo
hycolor
iftex
intcalc
kvdefinekeys
kvsetkeys
l3packages
letltxmacro
listings
ltxcmds
makeindex
needspace
oberdiek
pdfescape
pdftexcmds
psnfss
refcount
rerunfilecheck
hyperref
titlesec
tools
underscore
uniquecounter
@@ -0,0 +1,54 @@
name: Create release

# We create releases for all new tags
on:
push:
tags:
- "*"

jobs:
release:
runs-on: ubuntu-latest
name: Build release
environment: Release
steps:
# Boilerplate
- name: Checkout repository
uses: actions/checkout@v2
# GitHub Actions don't regenerate the test if the key doesn't change, so
# we integrate a random UUID into the key to keep them different.
# DO NOT CHANGE THIS
- name: Generate unique ID
id: get-id
run: |
echo -n ::set-output name=id::
cat /proc/sys/kernel/random/uuid
# Actually load the cache. Since we never reuse the key, we need restore-keys
# to indicate the prefix of our caches. This loads the newest cache with this
# prefix in the key.
#
# If we want to force regeneration of the cache, increase the number after
# *both* instances of "texlive-v"
- name: Load cache
uses: actions/cache@v2
with:
path: ~/texlive
key: texlive-v0-${{ steps.get-id.outputs.id }}
restore-keys: texlive-v0-
# We need Ghostscript for XeTeX tests.
- run: sudo apt-get install ghostscript
- name: Install TeX Live
uses: zauguin/install-texlive@v1
with:
# List the required TeX Live packages in a separate file to allow reuse in
# different workflows.
package_file: .github/tl_packages
- name: Run l3build
run: texlua l3build.lua ctan -H --show-log-on-error
# Now create the release (this only runs if the previous steps were successful)
- name: Create GitHub release
uses: ncipollo/release-action@880be3d0a71bc0fa98db60201d2cbdc27324f547
id: release
with:
artifacts: "build/distrib/ctan/*.zip"
token: ${{ secrets.GITHUB_TOKEN }}
@@ -0,0 +1,45 @@
name: Automated testing

on:
push:
pull_request:
branches:
- main

jobs:
l3build:
runs-on: ubuntu-latest
steps:
# Boilerplate
- name: Checkout repository
uses: actions/checkout@v2
# GitHub Actions don't regenerate the test if the key doesn't change, so
# we integrate a random UUID into the key to keep them different.
# DO NOT CHANGE THIS
- name: Generate unique ID
id: get-id
run: |
echo -n ::set-output name=id::
cat /proc/sys/kernel/random/uuid
# Actually load the cache. Since we never reuse the key, we need restore-keys
# to indicate the prefix of our caches. This loads the newest cache with this
# prefix in the key.
#
# If we want to force regeneration of the cache, increase the number after
# *both* instances of "texlive-v"
- name: Load cache
uses: actions/cache@v2
with:
path: ~/texlive
key: texlive-v0-${{ steps.get-id.outputs.id }}
restore-keys: texlive-v0-
# We need Ghostscript for XeTeX tests.
- run: sudo apt-get install ghostscript
- name: Install TeX Live
uses: zauguin/install-texlive@v1
with:
# List the required TeX Live packages in a separate file to allow reuse in
# different workflows.
package_file: .github/tl_packages
- name: Run l3build
run: texlua l3build.lua ctan -H --show-log-on-error
@@ -7,6 +7,26 @@ this project uses date-based 'snapshot' version identifiers.

## [Unreleased]

### Changed
- Documentation improvements

## [2021-08-28]

### Fixed
- Creation of zip files on Windows
- Only match filename and not full path for `exefiles`

## [2021-08-27]

### Added
- Add the `--show-saves` flag for `l3build check` to generate a list of
`l3build save` commands to regenerate all failing tests

### Changed
- No longer call an external program to generate `zip` files and generate
them directly instead. This disables the options `zipexe` and `zipopts`.
- Copy TDS-style zip files to main dir

## [2021-05-06]

### Fixed
@@ -492,7 +512,9 @@ this project uses date-based 'snapshot' version identifiers.
- Rationalise short option names: removed `-d`, `-E`, `-r`
- Target `cmdcheck`: specific to LaTeX kernel work

[Unreleased]: https://github.com/latex3/l3build/compare/2021-05-06...HEAD
[Unreleased]: https://github.com/latex3/l3build/compare/2021-08-28...HEAD
[2021-08-28]: https://github.com/latex3/l3build/compare/2021-08-27...2021-08-28
[2021-08-27]: https://github.com/latex3/l3build/compare/2021-05-06...2021-08-27
[2021-05-06]: https://github.com/latex3/l3build/compare/2021-05-05...2021-05-06
[2021-05-05]: https://github.com/latex3/l3build/compare/2020-06-04...2021-05-05
[2020-06-04]: https://github.com/latex3/l3build/compare/2020-03-25...2020-06-04
@@ -1,7 +1,7 @@
l3build: a testing and building system for LaTeX
=================================================

Release 2021-05-06
Release 2021-08-28

Overview
--------
@@ -31,6 +31,6 @@ The LaTeX kernel is developed by [The LaTeX Project](https://latex-project.org).

-----

<p>Copyright (C) 2014-2020 The LaTeX Project <br />
<p>Copyright (C) 2014-2021 The LaTeX Project <br />
<a href="http://latex-project.org/">http://latex-project.org/</a> <br />
All rights reserved.</p>
@@ -11,11 +11,13 @@ checkconfigs = {"build", "config-pdf", "config-plain"}
checkdeps = { }
checkengines = {"pdftex", "xetex", "luatex", "ptex", "uptex"}
cleanfiles = {"*.pdf", "*.tex", "*.zip"}
exefiles = {"l3build.lua"}
installfiles = {"regression-test.tex"}
packtdszip = true
scriptfiles = {"l3build*.lua"}
scriptmanfiles = {"l3build.1"}
sourcefiles = {"*.dtx", "l3build*.lua", "*.ins"}
typesetruns = 4
typesetcmds = "\\AtBeginDocument{\\DisableImplementation}"
unpackdeps = { }
tagfiles = {"l3build.1", "l3build.dtx", "*.md", "l3build.lua"}
@@ -1,6 +1,6 @@
--[[
File l3build-arguments.lua Copyright (C) 2018-2020 The LaTeX Project
File l3build-arguments.lua Copyright (C) 2018-2021 The LaTeX Project
It may be distributed and/or modified under the conditions of the
LaTeX Project Public License (LPPL), either version 1.3c of this
@@ -139,6 +139,12 @@ option_list =
desc = "If 'halt-on-error' stops, show the full log of the failure",
type = "boolean"
},
["show-saves"] =
{
desc = "If tests fail, show the l3build save invocation to regenerate the tests",
short = "S",
type = "boolean"
},
shuffle =
{
desc = "Shuffle order of tests",
@@ -1,6 +1,6 @@
--[[
File l3build-aux.lua Copyright (C) 2018-2020 The LaTeX Project
File l3build-aux.lua Copyright (C) 2018-2021 The LaTeX Project
It may be distributed and/or modified under the conditions of the
LaTeX Project Public License (LPPL), either version 1.3c of this

No commit comments for this range