Skip to content

Commit

Permalink
[ADD] github ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
hbrunn committed Jul 31, 2023
1 parent 03b8ff6 commit c64e799
Show file tree
Hide file tree
Showing 2 changed files with 145 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: pre-commit

on:
pull_request:
branches:
- "15.0*"
push:
branches:
- "15.0"
- "15.0-ocabot-*"

jobs:
pre-commit:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- name: Get python version
run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV
- uses: actions/cache@v1
with:
path: ~/.cache/pre-commit
key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }}
- name: Install pre-commit
run: pip install pre-commit
- name: Run pre-commit
run: pre-commit run --all-files --show-diff-on-failure --color=always
- name: Check that all files generated by pre-commit are in git
run: |
newfiles="$(git ls-files --others --exclude-from=.gitignore)"
if [ "$newfiles" != "" ] ; then
echo "Please check-in the following files:"
echo "$newfiles"
exit 1
fi
110 changes: 110 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
name: tests

on:
pull_request:
branches:
- "15.0*"
push:
branches:
- "15.0"
- "15.0-ocabot-*"

jobs:
unreleased-deps:
runs-on: ubuntu-latest
name: Detect unreleased dependencies
steps:
- uses: actions/checkout@v2
- run: |
for reqfile in requirements.txt test-requirements.txt ; do
if [ -f ${reqfile} ] ; then
result=0
# reject non-comment lines that contain a / (i.e. URLs, relative paths)
grep "^[^#].*/" ${reqfile} || result=$?
if [ $result -eq 0 ] ; then
echo "Unreleased dependencies found in ${reqfile}."
exit 1
fi
fi
done
test:
runs-on: ubuntu-22.04
container: ${{ matrix.container }}
name: ${{ matrix.name }}
strategy:
fail-fast: false
matrix:
include:
- container: ghcr.io/oca/oca-ci/py3.9-ocb15.0:latest
name: test with Odoo
- container: ghcr.io/oca/oca-ci/py3.9-ocb15.0:latest
makepo: "true"
name: test with OCB
services:
postgres:
image: postgres:12.0
env:
POSTGRES_USER: odoo
POSTGRES_PASSWORD: odoo
POSTGRES_DB: odoo
ports:
- 5432:5432
steps:
- uses: actions/checkout@v3
- name: Install addons and dependencies
run: |
git config --global user.email "${GITHUB_ACTOR_ID}+${GITHUB_ACTOR}@users.noreply.github.com"
git config --global user.name "$GITHUB_ACTOR"
pip install -r requirements.txt
pip install git-aggregator
cd /tmp
gitaggregate -c $GITHUB_WORKSPACE/repos.yml
find . -maxdepth 3 -mindepth 3 -name __manifest__.py -exec sh -c "ln -rs \$(dirname '{}') $ADDONS_PATH/" \;
cd $GITHUB_WORKSPACE
echo "addons_path=${ADDONS_PATH},${ADDONS_DIR}" >> ${ODOO_RC}
cat $ODOO_RC
- name: Check licenses
run: manifestoo -d . check-licenses
continue-on-error: true
- name: Check development status
run: manifestoo -d . check-dev-status --default-dev-status=Beta
continue-on-error: true
- name: Initialize test db
run: oca_init_test_database
- name: Run tests
run: oca_run_tests
- name: Generate coverage.xml
run: coverage xml --include '*.py'
# - uses: codecov/codecov-action@v3
# with:
# files: coverage.xml
- name: Update .po files
run: |
apt install gettext
git config --global --add safe.directory $(pwd)
LANG=de_DE
ADDONS=$(manifestoo --select-addons-dir ${ADDONS_DIR} list --separator=,)
for module in $(echo $ADDONS | tr ',' ' '); do
mkdir -p $module/i18n
/opt/odoo-venv/bin/odoo -d ${PGDATABASE} --i18n-export=/tmp/$module.pot --modules=$module --logfile=/dev/null
if [ -f $module/i18n/$LANG.po ]; then
TMPFILE=$(mktemp)
msgmerge --lang=$LANG --no-fuzzy-matching $module/i18n/$LANG.po /tmp/$module.pot --output-file=$TMPFILE
msgattrib --no-obsolete $TMPFILE > $module/i18n/$LANG.po
else
msginit --input /tmp/$module.pot --locale $LANG --no-translator -o $module/i18n/$LANG.po
fi
sed -i '/^"POT-Creation-Date:/d' $module/i18n/$LANG.po
git add $module/i18n/$LANG.po
done
if git commit -m '[UPD] translations' --dry-run; then
git fetch origin $GITHUB_HEAD_REF
git checkout $GITHUB_HEAD_REF
git commit -m '[UPD] translations'
git push origin $GITHUB_HEAD_REF
else
echo No changes, doing nothing
fi
- container: ghcr.io/oca/oca-ci/py3.9-ocb15.0:latest
name: test with Odoo
if: ${{ matrix.makepo == 'true' }}

0 comments on commit c64e799

Please sign in to comment.