Go to file
dependabot[bot] 7bc3eff0bc
Bump actions/checkout from 3 to 4
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-09-05 05:41:08 +00:00
.github Bump actions/checkout from 3 to 4 2023-09-05 05:41:08 +00:00
data first commit 2023-01-20 19:44:51 +01:00
src Bump version 2023-07-22 19:45:01 +02:00
.clang-format first commit 2023-01-20 19:44:51 +01:00
.gitignore first commit 2023-01-20 19:44:51 +01:00
Dockerfile Update Dockerfile 2023-07-19 16:18:08 +02:00
LICENSE first commit 2023-01-20 19:44:51 +01:00
Makefile first commit 2023-01-20 19:44:51 +01:00
README.md Build with curl 8.0.1, Update Dockerfile 2023-07-15 12:50:49 +02:00

CI-Release

Aroma Module that (hopefully) exports all functions of libcurl (Currently targeting: curl 8.0.1)

Usage

([ENVIRONMENT] is a placeholder for the actual environment name.)

  1. Copy the file CURLWrapperModule.wms into sd:/wiiu/environments/[ENVIRONMENT]/modules.
  2. Use libcurlwrapper

Building using the Dockerfile

It's possible to use a docker image for building. This way you don't need anything installed on your host system.

# Build docker image (only needed once)
docker build . -t curlwrappermodule-builder

# make 
docker run -it --rm -v ${PWD}:/project curlwrappermodule-builder make

# make clean
docker run -it --rm -v ${PWD}:/project curlwrappermodule-builder make clean

The bundled Dockerfile creates a module with this version: libcurl/8.0.1 mbedTLS/2.28.3 zlib/1.2.13

Format the code via docker

docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./src -i