-
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.
Merge pull request #7 from imdrasil/bugfix/remove-log-dependency
Remove log dependency
- Loading branch information
Showing
16 changed files
with
138 additions
and
132 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
set -exo pipefail | ||
|
||
sudo apt-get remove imagemagick && sudo apt-get autoremove | ||
|
||
sudo apt-get install build-essential | ||
|
||
wget "http://www.imagemagick.org/download/ImageMagick.tar.gz" | ||
mkdir ImageMagick | ||
tar xzvf ImageMagick.tar.gz -C ./ImageMagick | ||
|
||
cd ImageMagick/*/ | ||
./configure | ||
|
||
make | ||
|
||
sudo make install | ||
|
||
sudo ldconfig /user/local/lib | ||
|
||
convert --version |
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,35 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
schedule: | ||
- cron: "0 7 * * 1" | ||
|
||
jobs: | ||
test: | ||
strategy: | ||
fail-fast: false | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Install Crystal | ||
uses: oprypin/install-crystal@v1 | ||
|
||
- name: Donwload sources | ||
uses: actions/checkout@v2 | ||
|
||
- name: Check formatting | ||
run: crystal tool format --check | ||
|
||
- name: Install dependencies | ||
run: shards install --ignore-crystal-version | ||
|
||
- name: Run linter | ||
run: ./bin/ameba | ||
|
||
- name: Install ImageMagick | ||
run: bash .github/install_imagemagick.sh | ||
|
||
- name: Run specs | ||
run: make seq |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,13 +1,16 @@ | ||
name: crymagick | ||
version: 0.2.0 | ||
version: 0.2.2 | ||
|
||
authors: | ||
- Roman Kalnytskyi <moranibaca@gmail.com> | ||
|
||
crystal: 0.35.1 | ||
crystal: 1.0.0 | ||
|
||
license: MIT | ||
development_dependencies: | ||
minitest: | ||
github: ysbaddaden/minitest.cr | ||
version: 0.5.1 | ||
version: "1.0.1" | ||
ameba: | ||
github: crystal-ameba/ameba | ||
version: "= 0.14.3" |
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 |
---|---|---|
|
@@ -3,5 +3,5 @@ require "./crymagick/errors" | |
require "./crymagick/*" | ||
|
||
module CryMagick | ||
VERSION = "0.2.0" | ||
VERSION = "0.2.2" | ||
end |
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
Oops, something went wrong.