Overview
Comment:Use insecure wget for travis-ci that doesn't have the correct cert store
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | dev
Files: files | file ages | folders
SHA1: be4916642b1595ce8bf3f476dac94229d110008f
User & Date: bohwaz on 2017-03-06 22:50:05
Other Links: branch diff | manifest | tags
Context
2017-03-06
23:08
Correction chemin travis check-in: 7beb9dcfa5 user: bohwaz tags: dev
22:50
Use insecure wget for travis-ci that doesn't have the correct cert store check-in: be4916642b user: bohwaz tags: dev
22:47
More tests check-in: e52e9de6bf user: bohwaz tags: dev
Changes

Modified .travis.yml from [c571b01c05] to [c36f455870].

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
language: php
php:
  - '5.4'
  - '5.5'
  - '5.6'
  - '7.0'
  - '7.1'
  - hhvm

before_script:
  - cd src && make deps

script:
  - php tests/run.php

notifications:
  irc:









|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
language: php
php:
  - '5.4'
  - '5.5'
  - '5.6'
  - '7.0'
  - '7.1'
  - hhvm

install:
  - cd src && make deps

script:
  - php tests/run.php

notifications:
  irc:

Modified src/Makefile from [719a15c730] to [9c2fd3b041].

1
2
3
4
5
6
7
8
9
10
11
12
KD2_BRANCH=dev

deps:
	$(eval TMP_KD2=$(shell mktemp -d))
	#cd ${TMP_KD2}

	wget https://fossil.kd2.org/kd2fw/zip/KD2+Framework-${KD2_BRANCH}.zip?uuid=${KD2_BRANCH} -O ${TMP_KD2}/kd2.zip
	unzip "${TMP_KD2}/kd2.zip" -d ${TMP_KD2}

	rm -rf "include/lib/KD2"
	mv "${TMP_KD2}/KD2 Framework-${KD2_BRANCH}/src/lib/kd2" "include/lib/KD2"
	rm -rf ${TMP_KD2}






|





1
2
3
4
5
6
7
8
9
10
11
12
KD2_BRANCH=dev

deps:
	$(eval TMP_KD2=$(shell mktemp -d))
	#cd ${TMP_KD2}

	wget --no-check-certificate https://fossil.kd2.org/kd2fw/zip/KD2+Framework-${KD2_BRANCH}.zip?uuid=${KD2_BRANCH} -O ${TMP_KD2}/kd2.zip
	unzip "${TMP_KD2}/kd2.zip" -d ${TMP_KD2}

	rm -rf "include/lib/KD2"
	mv "${TMP_KD2}/KD2 Framework-${KD2_BRANCH}/src/lib/kd2" "include/lib/KD2"
	rm -rf ${TMP_KD2}