-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
193 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,6 +44,8 @@ unclassified: | |
ignoreAcceptLanguage: true | ||
location: | ||
adminAddress: "[email protected]" | ||
|
||
appearance: | ||
themeManager: | ||
disableUserThemes: true | ||
theme: "dark" | ||
theme: "darkSystem" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
89 changes: 0 additions & 89 deletions
89
roles/servers/apps/jenkins/templates/jjb/jobs/pipeline_huawei_lte_band_1800_2100.yml
This file was deleted.
Oops, something went wrong.
99 changes: 99 additions & 0 deletions
99
roles/servers/apps/jenkins/templates/jjb/jobs/pipeline_huawei_lte_band_day.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
# --- | ||
# - job: | ||
# name: Huawei LTE band 1800+2100 | ||
# project-type: pipeline | ||
# sandbox: true | ||
# # triggers: | ||
# # - timed: '0 8 * * *' | ||
# parameters: | ||
# - string: | ||
# name: "BRANCH_ANSIBLE_OPS_WORKSTATION" | ||
# default: "main" | ||
# trim: true | ||
# description: "Branch name repo: ansible-ops-workstation" | ||
# - string: | ||
# name: "BRANCH_ANSIBLE_OPS_PRIVATE" | ||
# default: "main" | ||
# trim: true | ||
# description: "Branch name repo: ansible-ops-private" | ||
# - bool: | ||
# name: DYNAMIC_SQM_ENABLED | ||
# default: true | ||
# description: "Enable dynamic SQM on OpenWRT" | ||
# - bool: | ||
# name: LOCAL_REPO_RUN | ||
# default: false | ||
# description: "Run from local copy of the repo, disable checkout" | ||
# - choice: | ||
# name: HUAWEI_LTE_BAND | ||
# choices: | ||
# - "5" | ||
# - "7FFFFFFFFFFFFFFF" | ||
# - "80005" | ||
# - "80000" | ||
# - "4" | ||
# - "1" | ||
# description: "LTE Band: 1800+2100, all, 800+1800+2100, 800, 1800, 2100" | ||
# dsl-yaml: | | ||
# pipeline: | ||
# agent: | ||
# any: | ||
# options: | ||
# - ansiColor('xterm') | ||
# - disableConcurrentBuilds() | ||
# - skipDefaultCheckout() | ||
# stages: | ||
# - stage: "Checkout ansible-ops-workstation" | ||
# when: | ||
# expression: | ||
# - "params.LOCAL_REPO_RUN == false" | ||
# steps: | ||
# script: | ||
# - dir: "'ansible-ops-workstation'" | ||
# script: | ||
# - >- | ||
# git( | ||
# url: "[email protected]:mikeeq/ansible-ops-workstation.git", | ||
# branch: "$params.BRANCH_ANSIBLE_OPS_WORKSTATION" | ||
# ) | ||
# - stage: "Checkout ansible-ops-private" | ||
# when: | ||
# expression: | ||
# - "params.LOCAL_REPO_RUN == false" | ||
# steps: | ||
# script: | ||
# - dir: "'ansible-ops-private'" | ||
# script: | ||
# - >- | ||
# git( | ||
# url: "[email protected]:mikeeq/ansible-ops-private.git", | ||
# branch: "$params.BRANCH_ANSIBLE_OPS_PRIVATE" | ||
# ) | ||
# - stage: "Unlock git-crypt" | ||
# steps: | ||
# script: | ||
# - dir: "'ansible-ops-private'" | ||
# script: | ||
# - | | ||
# sh """#!/bin/bash | ||
# id | ||
# pwd | ||
# ls | ||
# git-crypt unlock ~jenkins/secrets/git_crypt_key | ||
# """ | ||
# - stage: "Ansible LTE Band set" | ||
# steps: | ||
# script: | ||
# - | | ||
# sh """#!/bin/bash | ||
# cd ansible-ops-workstation/playbooks | ||
# ansible-playbook -e huawei_lteband=$params.HUAWEI_LTE_BAND -i ../../ansible-ops-private/inventory/hosts.yml huawei-lte-setband.yml | ||
# """ | ||
# - stage: "Ansible SQM disable" | ||
# steps: | ||
# script: | ||
# - | | ||
# sh """#!/bin/bash | ||
# cd ansible-ops-workstation/playbooks | ||
# ansible-playbook -e dynamic_sqm_enabled=$params.DYNAMIC_SQM_ENABLED -i ../../ansible-ops-private/inventory/hosts.yml openwrt-sqm.yml | ||
# """ |
Oops, something went wrong.