├── .gitattributes ├── .gitignore ├── README.md ├── boot_command_19_04.cfg ├── boot_command_19_10.cfg ├── configure_and_archive └── configure_windows_host_run_as_admin.bat ├── delete_build_artifacts.bat ├── http_distr ├── distrs1c │ ├── README.md │ └── install_1c_bundle.sh └── postgresql_for_1c │ ├── 10_10_4 │ ├── README.md │ ├── libicu55_55.1-7ubuntu0.4_amd64.deb │ ├── libssl1.0.0_1.0.1t-1+deb8u11_amd64.deb │ ├── postgresql.conf │ └── postgresql_installation_script.sh │ └── 11_5_7 │ ├── README.md │ ├── libicu55_55.1-7ubuntu0.4_amd64.deb │ ├── libssl1.0.0_1.0.2g-1ubuntu4.15_amd64.deb │ ├── postgresql.conf │ └── postgresql_installation_script.sh ├── iso ├── README.md ├── download_ubuntu_19_04.ps1 ├── download_ubuntu_19_10.ps1 ├── ubuntu-19.04-md5-checksums.txt └── ubuntu-19.10-md5-checksums.txt ├── jenkins-nodes ├── Vagrantfile ├── jenkins_node_configure.sh ├── node-1-starter │ ├── netplan_config.yaml │ ├── node-settings.bat │ ├── vagrant-destroy.bat │ └── vagrant-up.bat ├── node-2-worker │ ├── netplan_config.yaml │ ├── node-settings.bat │ ├── vagrant-destroy.bat │ └── vagrant-up.bat ├── node-3-worker │ ├── netplan_config.yaml │ ├── node-settings.bat │ ├── vagrant-destroy.bat │ └── vagrant-up.bat ├── shared │ └── README.md ├── terminator_config └── vagrant-up-destroy-common.bat └── packer_build.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/README.md -------------------------------------------------------------------------------- /boot_command_19_04.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/boot_command_19_04.cfg -------------------------------------------------------------------------------- /boot_command_19_10.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/boot_command_19_10.cfg -------------------------------------------------------------------------------- /configure_and_archive/configure_windows_host_run_as_admin.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/configure_and_archive/configure_windows_host_run_as_admin.bat -------------------------------------------------------------------------------- /delete_build_artifacts.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/delete_build_artifacts.bat -------------------------------------------------------------------------------- /http_distr/distrs1c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/http_distr/distrs1c/README.md -------------------------------------------------------------------------------- /http_distr/distrs1c/install_1c_bundle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/http_distr/distrs1c/install_1c_bundle.sh -------------------------------------------------------------------------------- /http_distr/postgresql_for_1c/10_10_4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/http_distr/postgresql_for_1c/10_10_4/README.md -------------------------------------------------------------------------------- /http_distr/postgresql_for_1c/10_10_4/libicu55_55.1-7ubuntu0.4_amd64.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/http_distr/postgresql_for_1c/10_10_4/libicu55_55.1-7ubuntu0.4_amd64.deb -------------------------------------------------------------------------------- /http_distr/postgresql_for_1c/10_10_4/libssl1.0.0_1.0.1t-1+deb8u11_amd64.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/http_distr/postgresql_for_1c/10_10_4/libssl1.0.0_1.0.1t-1+deb8u11_amd64.deb -------------------------------------------------------------------------------- /http_distr/postgresql_for_1c/10_10_4/postgresql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/http_distr/postgresql_for_1c/10_10_4/postgresql.conf -------------------------------------------------------------------------------- /http_distr/postgresql_for_1c/10_10_4/postgresql_installation_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/http_distr/postgresql_for_1c/10_10_4/postgresql_installation_script.sh -------------------------------------------------------------------------------- /http_distr/postgresql_for_1c/11_5_7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/http_distr/postgresql_for_1c/11_5_7/README.md -------------------------------------------------------------------------------- /http_distr/postgresql_for_1c/11_5_7/libicu55_55.1-7ubuntu0.4_amd64.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/http_distr/postgresql_for_1c/11_5_7/libicu55_55.1-7ubuntu0.4_amd64.deb -------------------------------------------------------------------------------- /http_distr/postgresql_for_1c/11_5_7/libssl1.0.0_1.0.2g-1ubuntu4.15_amd64.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/http_distr/postgresql_for_1c/11_5_7/libssl1.0.0_1.0.2g-1ubuntu4.15_amd64.deb -------------------------------------------------------------------------------- /http_distr/postgresql_for_1c/11_5_7/postgresql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/http_distr/postgresql_for_1c/11_5_7/postgresql.conf -------------------------------------------------------------------------------- /http_distr/postgresql_for_1c/11_5_7/postgresql_installation_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/http_distr/postgresql_for_1c/11_5_7/postgresql_installation_script.sh -------------------------------------------------------------------------------- /iso/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/iso/README.md -------------------------------------------------------------------------------- /iso/download_ubuntu_19_04.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/iso/download_ubuntu_19_04.ps1 -------------------------------------------------------------------------------- /iso/download_ubuntu_19_10.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/iso/download_ubuntu_19_10.ps1 -------------------------------------------------------------------------------- /iso/ubuntu-19.04-md5-checksums.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/iso/ubuntu-19.04-md5-checksums.txt -------------------------------------------------------------------------------- /iso/ubuntu-19.10-md5-checksums.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/iso/ubuntu-19.10-md5-checksums.txt -------------------------------------------------------------------------------- /jenkins-nodes/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/jenkins-nodes/Vagrantfile -------------------------------------------------------------------------------- /jenkins-nodes/jenkins_node_configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/jenkins-nodes/jenkins_node_configure.sh -------------------------------------------------------------------------------- /jenkins-nodes/node-1-starter/netplan_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/jenkins-nodes/node-1-starter/netplan_config.yaml -------------------------------------------------------------------------------- /jenkins-nodes/node-1-starter/node-settings.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/jenkins-nodes/node-1-starter/node-settings.bat -------------------------------------------------------------------------------- /jenkins-nodes/node-1-starter/vagrant-destroy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/jenkins-nodes/node-1-starter/vagrant-destroy.bat -------------------------------------------------------------------------------- /jenkins-nodes/node-1-starter/vagrant-up.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/jenkins-nodes/node-1-starter/vagrant-up.bat -------------------------------------------------------------------------------- /jenkins-nodes/node-2-worker/netplan_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/jenkins-nodes/node-2-worker/netplan_config.yaml -------------------------------------------------------------------------------- /jenkins-nodes/node-2-worker/node-settings.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/jenkins-nodes/node-2-worker/node-settings.bat -------------------------------------------------------------------------------- /jenkins-nodes/node-2-worker/vagrant-destroy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/jenkins-nodes/node-2-worker/vagrant-destroy.bat -------------------------------------------------------------------------------- /jenkins-nodes/node-2-worker/vagrant-up.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/jenkins-nodes/node-2-worker/vagrant-up.bat -------------------------------------------------------------------------------- /jenkins-nodes/node-3-worker/netplan_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/jenkins-nodes/node-3-worker/netplan_config.yaml -------------------------------------------------------------------------------- /jenkins-nodes/node-3-worker/node-settings.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/jenkins-nodes/node-3-worker/node-settings.bat -------------------------------------------------------------------------------- /jenkins-nodes/node-3-worker/vagrant-destroy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/jenkins-nodes/node-3-worker/vagrant-destroy.bat -------------------------------------------------------------------------------- /jenkins-nodes/node-3-worker/vagrant-up.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/jenkins-nodes/node-3-worker/vagrant-up.bat -------------------------------------------------------------------------------- /jenkins-nodes/shared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/jenkins-nodes/shared/README.md -------------------------------------------------------------------------------- /jenkins-nodes/terminator_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/jenkins-nodes/terminator_config -------------------------------------------------------------------------------- /jenkins-nodes/vagrant-up-destroy-common.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/jenkins-nodes/vagrant-up-destroy-common.bat -------------------------------------------------------------------------------- /packer_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl-lit/ci-infrastructure-for-1c/HEAD/packer_build.json --------------------------------------------------------------------------------