3.1.6.6 : Génération de paquets

Génération de paquets pour Ubuntu 20.04 :
1
2
3
4
5
6
7
8
9
10
11
12
Ubuntu 2004:
        image: gitlab-registry.in2p3.fr/cta-lapp/phoenix_libs/tests/testprojectreleaseontag/package_ubuntu2004:0.1
        stage: DocCoverage
        script:
                - ./cmake/phoenix_createPackages.sh DEB package_ubuntu2004 false
        artifacts:
                paths:
                - package_ubuntu2004
                expire_in: 8d
        only:
        #- branches
        - tags


Génération de paquets pour Ubuntu 22.04 :
1
2
3
4
5
6
7
8
9
10
11
12
Ubuntu 2204:
        image: gitlab-registry.in2p3.fr/cta-lapp/phoenix_libs/tests/testprojectreleaseontag/package_ubuntu2204:0.1
        stage: DocCoverage
        script:
                - ./cmake/phoenix_createPackages.sh DEB package_ubuntu2204 false
        artifacts:
                paths:
                - package_ubuntu2204
                expire_in: 8d
        only:
        #- branches
        - tags


Génération de paquets pour Fedora 31 :
1
2
3
4
5
6
7
8
9
10
11
12
Fedora 31:
        image: gitlab-registry.in2p3.fr/cta-lapp/phoenix_libs/tests/testprojectreleaseontag/package_fedora31:0.1
        stage: DocCoverage
        script:
                - ./cmake/phoenix_createPackages.sh RPM package_fedora31 false
        artifacts:
                paths:
                - package_fedora31
                expire_in: 8d
        only:
        #- branches
        - tags


Génération de paquets pour Fedora 36 :
1
2
3
4
5
6
7
8
9
10
11
12
Fedora 36:
        image: gitlab-registry.in2p3.fr/cta-lapp/phoenix_libs/tests/testprojectreleaseontag/package_fedora36:0.1
        stage: DocCoverage
        script:
                - ./cmake/phoenix_createPackages.sh RPM package_fedora36 false
        artifacts:
                paths:
                - package_fedora36
                expire_in: 8d
        only:
        #- branches
        - tags