[TEST] without gha setup docker #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test package | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- gha | |
jobs: | |
test: | |
runs-on: gha-runners-delib-py2 | |
continue-on-error: ${{ matrix.experimental }} | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["2.7"] | |
plone-version: ["4.3"] | |
experimental: [false] | |
steps: | |
- name: Needed for local development | |
if: ${{ env.ACT }} | |
run: echo /home/runner/externals/node20/bin >> $GITHUB_PATH | |
#- name: Set up Docker | |
# uses: crazy-max/ghaction-setup-docker@v3 | |
- name: Run libreoffice docker image | |
uses: addnab/docker-run-action@v3 | |
with: | |
username: ${{ secrets.COMMON_HARBOR_USERNAME }} | |
password: ${{ secrets.COMMON_HARBOR_PASSWORD }} | |
registry: harbor.imio.be | |
image: harbor.imio.be/common/libreoffice:7.3 | |
run: soffice --headless --nodefault --accept="socket,host=loffice,port=2002,tcpNoDelay=1;urp;StarOffice.ServiceManager" | |
- name: list docker images | |
run: docker ps -a | |
shell: bash | |
- name: Run tests | |
uses: IMIO/gha/plone-package-test-notify@main | |
env: | |
cache-name: cache-eggs | |
with: | |
PYTHON_VERSION: ${{ matrix.python-version }} | |
CACHE_KEY: ${{ runner.os }}-build-${{ env.cache-name }}-${{ matrix.python-version }} | |
# TODO : launch libreoffice on port 2002 | |
TEST_COMMAND: OO_SERVER=loffice OO_PORT=2002 bin/testmc | |
REQUIREMENTS_FILE: 'requirements-tests.txt' | |
MATTERMOST_WEBHOOK_URL: ${{ secrets.DELIB_MATTERMOST_WEBHOOK_URL }} | |
BUILDOUT_CONFIG_FILE: 'test-${{ matrix.plone-version }}.cfg' |