This repository was archived by the owner on Jul 29, 2020. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # PHP CircleCI 2.0 configuration file
2+ #
3+ # Check https://circleci.com/docs/2.0/language-php/ for more details
4+ #
5+ version : 2
6+ jobs :
7+ build :
8+ docker :
9+ # Specify the version you desire here
10+ - image : circleci/php:7.1-node-browsers
11+
12+ # Specify service dependencies here if necessary
13+ # CircleCI maintains a library of pre-built images
14+ # documented at https://circleci.com/docs/2.0/circleci-images/
15+ # Using the RAM variation mitigates I/O contention
16+ # for database intensive operations.
17+ # - image: circleci/mysql:5.7-ram
18+ #
19+ # - image: redis:2.8.19
20+
21+ steps :
22+ - checkout
23+
24+ - run : sudo apt update # PHP CircleCI 2.0 Configuration File# PHP CircleCI 2.0 Configuration File sudo apt install zlib1g-dev libsqlite3-dev
25+ - run : sudo docker-php-ext-install zip
26+
27+ # Download and cache dependencies
28+ - restore_cache :
29+ keys :
30+ # "composer.lock" can be used if it is committed to the repo
31+ - v1-dependencies-{{ checksum "composer.json" }}
32+ # fallback to using the latest cache if no exact match is found
33+ - v1-dependencies-
34+
35+ - run : composer install -n --prefer-dist
36+
37+ - save_cache :
38+ key : v1-dependencies-{{ checksum "composer.json" }}
39+ paths :
40+ - ./vendor
41+ - restore_cache :
42+ keys :
43+ - node-v1-{{ checksum "package.json" }}
44+ - node-v1-
45+ - run : yarn install
46+ - save_cache :
47+ key : node-v1-{{ checksum "package.json" }}
48+ paths :
49+ - node_modules
50+
51+ # run tests with phpunit or codecept
52+ - run : ./vendor/bin/phpunit
Original file line number Diff line number Diff line change 1- flexipeehp (1.20.3 ) UNRELEASED; urgency=medium
1+ flexipeehp (1.26 ) UNRELEASED; urgency=medium
22
33 * Docker Image build
44 * Ubuntu 18.04 compatibility build
55 * Openbuild Service build
66
7- -- Vítězslav Dvořák <vitex@develoid.jinonice.czf> Wed, 31 Oct 2018 17:58:04 +0100
7+ -- Vítězslav Dvořák <vitex@develoid.jinonice.czf> Wed, 13 Mar 2019 15:01:55 +0100
88
99flexipeehp (1.12) experimental; urgency=medium
1010
Original file line number Diff line number Diff line change 1+ auxiliary.org-netbeans-modules-php-phing.action_2e_build =build
2+ auxiliary.org-netbeans-modules-php-phing.action_2e_clean =clean
3+ auxiliary.org-netbeans-modules-php-phing.action_2e_rebuild =clean build
4+ auxiliary.org-netbeans-modules-php-phing.action_2e_test =test
15auxiliary.org-netbeans-modules-php-phpunit.bootstrap_2e_create_2e_tests =true
26auxiliary.org-netbeans-modules-php-phpunit.bootstrap_2e_enabled =true
37auxiliary.org-netbeans-modules-php-phpunit.bootstrap_2e_path =testing/bootstrap.php
Original file line number Diff line number Diff line change @@ -573,9 +573,6 @@ public function setDataValue($columnName, $value)
573573 case 'kod ' :
574574 $ value = self ::uncode ($ value ); //Alwyas uncode "kod" column
575575 break ;
576- case $ this ->getKeyColumn ():
577- $ result = $ this ->setMyKey ($ value );
578- break ;
579576 default :
580577 if (is_object ($ value )) {
581578 switch (get_class ($ value )) {
You can’t perform that action at this time.
0 commit comments