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

.gitlab-ci.yml (302B)


      1 stages:
      2   - test
      3   - package
      4 
      5 default:
      6   image: python:3.12
      7 
      8 test:
      9   stage: test
     10   script:
     11     - make test
     12 
     13 package:
     14   stage: package
     15   before_script:
     16     - apt-get update
     17     - apt-get install --yes zip
     18   script:
     19     - make package
     20   artifacts:
     21     paths:
     22       - tem_loader.zip
     23     expire_in: 1 week