Skip to content
Snippets Groups Projects
Select Git revision
  • 1b0288d539569f3309f2525a2fa548fab75cbaa8
  • v2018.2.x default
  • experimental
  • master
  • v2021.1.2-ffs
  • v2021.1.1-ffs
  • nrb/gluon-master-cpe510
  • v2021.1-ffs
  • v2020.2.3-ffs
  • nrbffs/fastd-remove-delay
  • v2020.2.2-ffs
  • v2020.2.1-ffs
  • v2020.2-ffs
  • v2020.2.x
  • v2020.1.3-ffs
  • v2020.1.1-ffs
  • v2020.1-ffs
  • v2019.1.2-ffs
  • v2019.1.1-ffs
  • nrb/test-radv-filter
  • v2019.1-ffs
  • nrbffs/netgear-ex6120
  • v2021.1.2-ffs0.2
  • v2021.1.2-ffs0.1
  • v2021.1.1-ffs0.4
  • v2021.1.1-ffs0.3
  • v2021.1.1-ffs0.2
  • v2021.1.1-ffs0.1
  • v2021.1-ffs0.1
  • v2020.2.3-ffs0.3
  • v2020.2.3-ffs0.2
  • v2020.2.3-ffs0.1
  • v2020.2.2-ffs0.1
  • v2020.2.1-ffs0.1
  • v2020.2-ffs0.1
  • v2020.2
  • v2020.2.x-ffs0.1
  • v2020.1.3-ffs0.1
  • v2020.1.1-ffs0.1
  • v2020.1-ffs0.1
  • v2019.1.2-ffs0.1
  • v2019.1.1-ffs0.1
42 results

install-dependencies.sh

Blame
  • Forked from firmware / FFS Gluon
    Source project has a limited visibility.
    Jenkinsfile 646 B
    pipeline {
        agent { label 'gluon-docker' }
        environment {
            GLUON_SITEDIR = "contrib/ci/minimal-site"
            GLUON_TARGET = "x86-64"
            BUILD_LOG = "1"
        }
        stages {
            stage('lint') {
                steps {
                    sh 'luacheck package scripts targets'
                }
            }
            stage('docs') {
                steps {
                    sh 'make -C docs html'
                }
            }
            stage('build') {
                steps {
                    sh 'make update'
                    sh 'test -d /dl_cache && ln -s /dl_cache openwrt/dl || true'
                    sh 'make -j$(nproc) V=s'
                }
            }
        }
    }