update haxe for CI, 4.2.5 -> 4.3.6 #514
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
name: CI | |
on: [push, pull_request] | |
jobs: | |
cross-platformness: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
algo: ['convolve'] | |
haxe-version: [4.3.6] | |
target: [cpp, cppia, js, cs, hl, interp, java, jvm, python, php, lua, neko] | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup Haxe (${{ matrix.haxe-version }}) | |
uses: krdlab/setup-haxe@v1 | |
with: | |
haxe-version: ${{ matrix.haxe-version }} | |
- name: Set HAXEPATH | |
run: | | |
echo "HAXEPATH=$HAXE_STD_PATH/.." >> $GITHUB_ENV | |
- name: Install & Set-up Vision | |
run: | | |
haxelib dev vision $GITHUB_WORKSPACE | |
haxelib install format --quiet | |
haxelib install hxcpp --quiet | |
haxelib install hxjava --quiet | |
haxelib install hxcs --quiet | |
- name: ${{ matrix.algo }} (${{ matrix.target }}) | |
run: | | |
cd unit_tests/${{ matrix.algo }} | |
haxe ${{ matrix.target }}.hxml | |
algorithm: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
algo: ['general', 'laplacianEdgeDiffOperator', 'limitColorRanges', 'bilateralDenoise', 'whiteNoise', 'deepfry', 'vignette', 'simpleLine2DDetection', 'combine', 'perwittEdgeDiffOperator', 'cannyEdgeDetection', 'projectiveTransform', 'posterize', 'invert', 'saltAndPepperNoise', 'normalize', 'smooth', 'medianBlur', 'laplacianOfGaussianEdgeDetection', 'convolutionRidgeDetection', 'blackAndWhite', 'fisheyeDistortion', 'erode', 'nearestNeighborBlur', 'mustacheDistortion', 'gaussianBlur', 'pixelate', 'sepia', 'dilate', 'sharpen', 'grayscale', 'convolve', 'robertEdgeDiffOperator', 'replaceColorRanges', 'sobelEdgeDiffOperator', 'sobelEdgeDetection', 'pincushionDistortion', 'barrelDistortion', 'contrast', 'perwittEdgeDetection', 'dropOutNoise', 'affineTransform'] | |
haxe-version: [4.2.5] | |
target: [interp] | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup Haxe (${{ matrix.haxe-version }}) | |
uses: krdlab/setup-haxe@v1 | |
with: | |
haxe-version: ${{ matrix.haxe-version }} | |
- name: Set HAXEPATH | |
run: | | |
echo "HAXEPATH=$HAXE_STD_PATH/.." >> $GITHUB_ENV | |
- name: Install & Set-up Vision | |
run: | | |
haxelib dev vision $GITHUB_WORKSPACE | |
haxelib install format --quiet | |
haxelib install hxcpp --quiet | |
haxelib install hxjava --quiet | |
haxelib install hxcs --quiet | |
- name: ${{ matrix.algo }} (${{ matrix.target }}) | |
run: | | |
cd unit_tests/${{ matrix.algo }} | |
haxe ${{ matrix.target }}.hxml |