Try to build newstable
authorMiroslav Ondra <ondra@faster.cz>
Fri, 24 Sep 2021 08:26:48 +0000 (10:26 +0200)
committerMiroslav Ondra <ondra@faster.cz>
Fri, 24 Sep 2021 08:26:48 +0000 (10:26 +0200)
g1.gitlab-ci.yml [deleted file]

diff --git a/g1.gitlab-ci.yml b/g1.gitlab-ci.yml
deleted file mode 100644 (file)
index d1d9cf9..0000000
+++ /dev/null
@@ -1,72 +0,0 @@
-variables:
-#    TEMPLATE_DISABLE: "1"
-    TEMPLATE_DEB_NAME: "unipi-kernel-modules"
-
-include: 
-    project: docker/template
-    file: debian-pkg.yaml
-
-
-#######################################################################################
-######### Modified from debian-pkg.yaml - REMOVE in final branch ######################
-#######################################################################################
-
-.g1build_for_stable:
-    stage: build_package
-    image: $CI_REGISTRY/docker/bob-the-builder/$STABLE_CODENAME:latest
-    only: ['g1']
-    variables:
-        VERSION_SUFFIX: ""
-        GIT_STRATEGY: clone
-        GIT_CHECKOUT: "true"
-    script:
-        - /ci-scripts/build-package.sh $TEMPLATE_DEB_NAME
-    artifacts:
-        paths:
-            - build/
-            - debian/changelog
-
-#######################################################################################
-######### END END                         REMOVE in final branch ######################
-#######################################################################################
-
-##############################################################
-## set empty VERSION_SUFFIX; package names are concatenated with 
-##      last kernel name, so they differs for distributions
-
-build-stable:g1:
-    stage: build_package
-    image: $CI_REGISTRY/docker/bob-the-builder/$STABLE_CODENAME:latest
-    only: ['g1']
-    tags: ['arm64']
-    variables:
-        PLATFORM: "g1"
-        VERSION_SUFFIX: ""
-        GIT_STRATEGY: clone
-        GIT_CHECKOUT: "true"
-    script:
-        - /ci-scripts/build-package.sh $TEMPLATE_DEB_NAME
-    only: ['g1']
-    before_script: 
-        - apt-get update
-        - apt-get install -y g1-kernel-headers
-    artifacts:
-        paths:
-            - build/
-            - debian/changelog
-
-.build-stable:nano:
-    extends: .g1build_for_stable
-    tags: ['arm64']
-    variables:
-        PLATFORM: "axon"
-    only: 
-        variables: [$DISABLE_STABLE_ARM64==null, $DISABLE_STABLE_ARM64=="0"]
-    before_script: 
-        - apt-get update
-        - apt-get install -y axon-kernel-headers
-
-
-deploy-test:
-    extends: .deploy_test
-