Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI actually working #147

Merged
merged 3 commits into from
Oct 2, 2022
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: dev packages for testing
run: apt update && apt install -y libgd-dev graphviz libxml2-dev
- name: Install early + extra deps
run: cpanm -n File::ShareDir::Install DBD::SQLite CGI
run: cpanm -n File::ShareDir::Install
- name: Install dependencies
run: cpanm -n --installdeps --with-develop .
- name: Set up
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Perl
run: brew install perl
run: brew install perl gd graphviz libxml2
- name: perl -V
run: perl -V
- name: Install early dep
run: cpanm -n File::ShareDir::Install
run: curl -L https://cpanmin.us | perl - -n File::ShareDir::Install
- name: Install Dependencies
run: curl -L https://cpanmin.us | perl - --installdeps -n --with-develop .
- name: Set up
Expand Down
2 changes: 2 additions & 0 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@ my %eumm_args = (
requires => {
'Template' => '2.20',
'GD' => '0',
'DBD::SQLite' => '0',
'CGI' => '0',
'GraphViz' => '0',
'Graph::Directed' => '0',
'Spreadsheet::ParseExcel' => '0.41',
Expand Down