Improve yaml config file validation and linting #519
Workflow file for this run
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: Testing | |
on: [pull_request] | |
jobs: | |
build: | |
env: | |
RELEASE: release-py3x.yml | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ['3.8', '3.10'] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
sudo apt update | |
sudo apt install csh | |
- name: Setup Komodo | |
run: | | |
./bootstrap.sh $(which python) | |
- name: Unit tests | |
run: | |
source boot/build-env/bin/activate | |
boot/kmd-env/bin/python -m pytest tests | |
- name: Lint examples | |
run: | | |
boot/kmd-env/bin/python -m komodo.lint examples/stable.yml examples/repository.yml | |
- name: Full integration test | |
run: | | |
./run_kmd.sh \ | |
ci/${RELEASE} \ | |
ci/repository.yml \ | |
--workspace ${{ runner.temp }}/kmd-ws \ | |
--prefix ${{ runner.temp }}/prefix \ | |
--release ci \ | |
- name: Build libkmd.so (a dummy C library) for testing | |
run: | | |
set -e | |
mkdir ${{ runner.temp }}/tmplib | |
echo 'char* foo() { return "bar"; }' > ${{ runner.temp }}/tmplib/lib.c | |
cc -shared -o${{ runner.temp }}/tmplib/libkmd.so -fPIC ${{ runner.temp }}/tmplib/lib.c | |
# Deploy directly into the above built komodo release | |
cp ${{ runner.temp }}/tmplib/libkmd.so ${{ runner.temp }}/prefix/ci/root/lib | |
source ${{ runner.temp }}/prefix/ci/enable | |
which python | |
python --version | |
python -c "import numpy;print(numpy.__file__)" | |
ci/test_import_lib.py | |
- name: Test enable script | |
run: | | |
source ${{ runner.temp }}/prefix/ci/enable | |
[[ "$(which python)" == "${{ runner.temp }}/prefix/ci/root/bin/python" ]] | |
- name: Test Python version | |
run: | | |
source ${{ runner.temp }}/prefix/ci/enable | |
pyver=$(python -c 'from sys import version_info as v;print(f"{v[0]}.{v[1]}")') | |
[[ "${pyver}" == "${{ matrix.python-version }}" ]] |