ICHINOSE Shogo

Results 75 comments of ICHINOSE Shogo

can I have whole log and your workflow YAML settings? If jobs are running on public repository, it is the best way to share the repository url.

It looks that you tried to run goverall directly. Did it work correctly? > # - name: submit coverage > # run: $(go env GOPATH)/bin/goveralls -service="github" -coverprofile=$GITHUB_WORKSPACE/profile.cov > # working-directory:...

I have no plan to support other platform than x86-64

building perl 5.6 binaries is succeeded, but not tested widely. test reports are welcome.

@tobyink can you show me your logs?

Ah... I see. `prove` script is available from perl v5.10.1 ``` $ corelist App::Prove Data for 2020-06-20 App::Prove was first released with perl v5.10.1 ``` I will install latest Test::Harness.

I released https://github.com/shogo82148/actions-setup-perl/releases/tag/v1.9.5 it works https://github.com/shogo82148/Compress-Raw-Zlib/runs/1716607477?check_suite_focus=true 🎉

It is a bug of perl 5.6. the `system` function on windows doesn't handle its arguments correctly. ```perl # test.pl my $perl = $^X; print `"$perl" -e "print join qq[\\n],...

because CPAN::Meta is too old to generate MYMETA. CPAN::Meta v2.112150 is required. https://github.com/Perl-Toolchain-Gang/ExtUtils-MakeMaker/blob/1daf00cbc42538a4cda7c6bc5671abab9c30159a/lib/ExtUtils/MM_Any.pm#L1108-L1115 and the latest version of CPAN::Meta requires perl v5.8.1 or later https://metacpan.org/pod/release/DAGOLDEN/CPAN-Meta-2.150010/lib/CPAN/Meta.pm

golang.org/x/image/webp registers its image format. So you can use webp by importing it. ```go import _ "golang.org/x/image/webp" ```