qgis-tem-loader

qgis plugin for loading TEM geophysical inversion XYZ files as 3D objects
git clone git://src.adamsgaard.dk/qgis-tem-loader # fast
git clone https://src.adamsgaard.dk/qgis-tem-loader.git # slow
Log | Files | Refs | README | LICENSE Back to index

commit c47ddd78cd3c00298b792c8eb00bff0cd94dbeef
parent 834aa0808a7905defd0387c9536f14664b3054e0
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Wed,  8 Apr 2026 16:27:39 +0200

ci(gitlab): add test and package pipeline

Diffstat:
A.gitlab-ci.yml | 23+++++++++++++++++++++++
1 file changed, 23 insertions(+), 0 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml @@ -0,0 +1,23 @@ +stages: + - test + - package + +default: + image: python:3.12 + +test: + stage: test + script: + - make test + +package: + stage: package + before_script: + - apt-get update + - apt-get install --yes zip + script: + - make package + artifacts: + paths: + - tem_loader.zip + expire_in: 1 week