docs(github_actions): Remove Travis references
Signed-off-by: Lucas Schwiderski <lucas@lschwiderski.de>
This commit is contained in:
parent
8334f9c1b1
commit
e7239840f4
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
#
|
#
|
||||||
# Process (API) docs after a successful build on Travis (via ../.travis.yml).
|
# Process (API) docs after a successful build on GitHub Actions.
|
||||||
#
|
#
|
||||||
# Updated/changed documentation for "master" is pushed to gh-pages.
|
# Updated/changed documentation for "master" is pushed to gh-pages.
|
||||||
# In case of pull requests or other branches, it will get added to a separate branch.
|
# In case of pull requests or other branches, it will get added to a separate branch.
|
||||||
|
@ -63,7 +63,7 @@ cat > ../doc/README.md <<END
|
||||||
|
|
||||||
This repository contains the built API documentation for the
|
This repository contains the built API documentation for the
|
||||||
[awesome](https://github.com/awesomeWM/awesome) window manager. It is
|
[awesome](https://github.com/awesomeWM/awesome) window manager. It is
|
||||||
automatically updated via Travis when the master branch changes. Hence:
|
automatically updated via GitHub Actions when the master branch changes. Hence:
|
||||||
|
|
||||||
## Do NOT send pull requests here
|
## Do NOT send pull requests here
|
||||||
|
|
||||||
|
|
|
@ -49,7 +49,7 @@ globals = {
|
||||||
-- Enable cache (uses .luacheckcache relative to this rc file).
|
-- Enable cache (uses .luacheckcache relative to this rc file).
|
||||||
cache = true
|
cache = true
|
||||||
|
|
||||||
-- Do not enable colors to make the Travis CI output more readable.
|
-- Do not enable colors to make the CI output more readable.
|
||||||
color = false
|
color = false
|
||||||
|
|
||||||
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|
||||||
|
|
|
@ -21,7 +21,7 @@ execute_process(COMMAND ${LUA_EXECUTABLE} -e "p = package.path:gsub(';', '\\\\;'
|
||||||
OUTPUT_VARIABLE "LUA_PATH_")
|
OUTPUT_VARIABLE "LUA_PATH_")
|
||||||
|
|
||||||
# Allow to use the example tests by themselves.
|
# Allow to use the example tests by themselves.
|
||||||
# This was used on Travis for separate coverage reporting, but is not really
|
# This was used during CI for separate coverage reporting, but is not really
|
||||||
# required anymore.
|
# required anymore.
|
||||||
if(NOT SOURCE_DIR AND ${CMAKE_CURRENT_SOURCE_DIR} MATCHES "/tests/examples")
|
if(NOT SOURCE_DIR AND ${CMAKE_CURRENT_SOURCE_DIR} MATCHES "/tests/examples")
|
||||||
get_filename_component(TOP_SOURCE_DIR
|
get_filename_component(TOP_SOURCE_DIR
|
||||||
|
|
|
@ -68,7 +68,6 @@ else
|
||||||
tests="$this_dir/test*.lua"
|
tests="$this_dir/test*.lua"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Travis.
|
|
||||||
if [ "$CI" = true ]; then
|
if [ "$CI" = true ]; then
|
||||||
HEADLESS=1
|
HEADLESS=1
|
||||||
TEST_PAUSE_ON_ERRORS=0
|
TEST_PAUSE_ON_ERRORS=0
|
||||||
|
|
Loading…
Reference in New Issue