bug(github_actions): Fix date for apidoc examples.

Signed-off-by: Lucas Schwiderski <lucas@lschwiderski.de>
This commit is contained in:
Lucas Schwiderski 2021-05-08 19:10:07 +02:00
parent 1867ab057c
commit 4d83228f00
No known key found for this signature in database
GPG Key ID: AA12679AAA6DF4D8
2 changed files with 4 additions and 3 deletions

View File

@ -21,6 +21,10 @@ jobs:
main: main:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
env:
# Used for stable dates in documentation examples. See #2070.
SOURCE_DATE_EPOCH: "1893456000"
steps: steps:
# Create a cache invalidation key based on the current year + week. # Create a cache invalidation key based on the current year + week.
# This way, packages will be checked for updates once every week. # This way, packages will be checked for updates once every week.

View File

@ -59,8 +59,6 @@ jobs:
tests_screen_size: "1921x1079" tests_screen_size: "1921x1079"
check_qa: true check_qa: true
empty_theme_while_loading: true empty_theme_while_loading: true
# SOURCE_DATE_EPOCH: used for stable dates during build.
source_date_epoch: "1893456000"
test_prev_commits: true test_prev_commits: true
env: env:
@ -68,7 +66,6 @@ jobs:
LUAINCLUDE: ${{ matrix.lua_include || format('/usr/include/lua{0}', matrix.lua_version) }} LUAINCLUDE: ${{ matrix.lua_include || format('/usr/include/lua{0}', matrix.lua_version) }}
LUALIBRARY: ${{ matrix.lua_library || format('/usr/lib/x86_64-linux-gnu/liblua{0}.so', matrix.lua_version) }} LUALIBRARY: ${{ matrix.lua_library || format('/usr/lib/x86_64-linux-gnu/liblua{0}.so', matrix.lua_version) }}
TESTS_SCREEN_SIZE: ${{ matrix.tests_screen_size }} TESTS_SCREEN_SIZE: ${{ matrix.tests_screen_size }}
SOURCE_DATE_EPOCH: ${{ matrix.source_date_epoch }}
TEST_TIMEOUT: '100' TEST_TIMEOUT: '100'
CI: 'true' CI: 'true'