CI: rename ci folder to consistent naming (MR 2514)
part of https://gitlab.com/postmarketOS/postmarketos/-/issues/26
This commit is contained in:
parent
b27a1305bf
commit
ef0117cc4e
19 changed files with 14 additions and 14 deletions
|
@ -5,4 +5,4 @@ export PYTHONUNBUFFERED=1
|
|||
JOB_ARCH="${CI_JOB_NAME#build-}"
|
||||
|
||||
set -x
|
||||
su pmos -c ".gitlab-ci/build_changed_aports.py $JOB_ARCH"
|
||||
su pmos -c ".ci/build_changed_aports.py $JOB_ARCH"
|
|
@ -162,7 +162,7 @@ def get_changed_packages():
|
|||
|
||||
# Skip files:
|
||||
# * in the root dir of pmaports (e.g. README.md)
|
||||
# * path with a dot (e.g. .gitlab-ci/, device/.shared-patches/)
|
||||
# * path with a dot (e.g. .ci/, device/.shared-patches/)
|
||||
if not dirname or file.startswith(".") or "/." in file:
|
||||
continue
|
||||
|
|
@ -32,4 +32,4 @@ if ! [ -e $deviceinfo ]; then
|
|||
fi
|
||||
|
||||
# Run testcases
|
||||
pytest -vv -x --tb=native "$pmaports/.gitlab-ci/testcases" "$@"
|
||||
pytest -vv -x --tb=native "$pmaports/.ci/testcases" "$@"
|
|
@ -38,7 +38,7 @@ sh_files="
|
|||
$(find . -path './main/devicepkg-dev/*.sh')
|
||||
$(find . -path './main/postmarketos-mvcfg/*.sh')
|
||||
|
||||
$(find . -path '.gitlab-ci/*.sh')
|
||||
$(find . -path '.ci/*.sh')
|
||||
"
|
||||
for file in $sh_files; do
|
||||
echo "Test with shellcheck: $file"
|
|
@ -46,7 +46,7 @@ def test_executable_files():
|
|||
|
||||
# Make sure files are either:
|
||||
# - in root directory (README.md)
|
||||
# - hidden (.gitlab-ci/, device/.shared-patches/)
|
||||
# - hidden (.ci/, device/.shared-patches/)
|
||||
# - or belong to a package (below a directory with APKBUILD)
|
||||
def test_files_belong_to_package():
|
||||
# Walk directories and set package_dir when we find an APKBUILD
|
|
@ -3,7 +3,7 @@
|
|||
# global settings
|
||||
image: alpine:latest
|
||||
after_script:
|
||||
- .gitlab-ci/move_logs.sh $CI_PROJECT_DIR
|
||||
- .ci/move_logs.sh $CI_PROJECT_DIR
|
||||
stages:
|
||||
- lint
|
||||
- build
|
||||
|
@ -34,7 +34,7 @@ wiki:
|
|||
before_script:
|
||||
- apk -q add python3
|
||||
script:
|
||||
- .gitlab-ci/check_devices_in_wiki.py --booting
|
||||
- .ci/check_devices_in_wiki.py --booting
|
||||
|
||||
# testcases linting
|
||||
testcases-linting:
|
||||
|
@ -44,8 +44,8 @@ testcases-linting:
|
|||
refs:
|
||||
- merge_requests
|
||||
changes:
|
||||
- .gitlab-ci/*
|
||||
- .gitlab-ci/*/*
|
||||
- .ci/*
|
||||
- .ci/*/*
|
||||
before_script:
|
||||
- apk -q add py-flake8
|
||||
script:
|
||||
|
@ -59,7 +59,7 @@ shellcheck:
|
|||
before_script:
|
||||
- apk -q add shellcheck
|
||||
script:
|
||||
- .gitlab-ci/shellcheck.sh
|
||||
- .ci/shellcheck.sh
|
||||
|
||||
# aports checks (generic)
|
||||
aports-static:
|
||||
|
@ -69,8 +69,8 @@ aports-static:
|
|||
- wget "https://gitlab.com/postmarketOS/ci-common/-/raw/master/install_pmbootstrap.sh"
|
||||
- sh ./install_pmbootstrap.sh pytest
|
||||
script:
|
||||
- su pmos -c ".gitlab-ci/run_testcases.sh"
|
||||
- su pmos -c ".gitlab-ci/check_changed_aports_versions.py"
|
||||
- su pmos -c ".ci/run_testcases.sh"
|
||||
- su pmos -c ".ci/check_changed_aports_versions.py"
|
||||
artifacts:
|
||||
when: on_failure
|
||||
paths:
|
||||
|
@ -98,7 +98,7 @@ aport-lint:
|
|||
- wget "https://gitlab.com/postmarketOS/ci-common/-/raw/master/install_pmbootstrap.sh"
|
||||
- sh ./install_pmbootstrap.sh
|
||||
script:
|
||||
- su pmos -c ".gitlab-ci/apkbuild-linting.py"
|
||||
- su pmos -c ".ci/apkbuild-linting.py"
|
||||
only:
|
||||
- merge_requests
|
||||
allow_failure: true
|
||||
|
@ -139,7 +139,7 @@ mr-settings:
|
|||
- wget "https://gitlab.com/postmarketOS/ci-common/-/raw/master/install_pmbootstrap.sh"
|
||||
- sh ./install_pmbootstrap.sh
|
||||
script:
|
||||
- .gitlab-ci/build.sh
|
||||
- .ci/build.sh
|
||||
- cp -r /home/pmos/.local/var/pmbootstrap/packages/ packages/ || true
|
||||
artifacts:
|
||||
expire_in: 1 week
|
||||
|
|
Loading…
Reference in a new issue