2022-02-03 16:24:36 +01:00
|
|
|
name: CI-PR
|
|
|
|
|
|
|
|
on: [pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
clang-format-lib:
|
2022-09-04 09:51:04 +02:00
|
|
|
runs-on: ubuntu-22.04
|
2022-02-03 16:24:36 +01:00
|
|
|
steps:
|
2023-04-07 19:57:49 +02:00
|
|
|
- uses: actions/checkout@v3
|
2022-02-03 16:24:36 +01:00
|
|
|
- name: clang-format
|
|
|
|
run: |
|
2023-03-16 12:46:07 +01:00
|
|
|
docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./include ./libraries
|
2022-02-03 16:24:36 +01:00
|
|
|
build-lib:
|
2022-09-04 09:51:04 +02:00
|
|
|
runs-on: ubuntu-22.04
|
2022-02-03 16:24:36 +01:00
|
|
|
needs: clang-format-lib
|
|
|
|
steps:
|
2023-04-07 19:57:49 +02:00
|
|
|
- uses: actions/checkout@v3
|
2022-02-03 16:24:36 +01:00
|
|
|
- name: build binary
|
|
|
|
run: |
|
|
|
|
docker build . -f Dockerfile.buildlocal -t builder
|
|
|
|
docker run --rm -v ${PWD}:/project builder make
|
|
|
|
- uses: actions/upload-artifact@master
|
|
|
|
with:
|
|
|
|
name: binary
|
2022-09-04 09:51:04 +02:00
|
|
|
path: "lib/*.a"
|
2022-02-03 16:24:36 +01:00
|
|
|
clang-format-examples:
|
2022-09-04 09:51:04 +02:00
|
|
|
runs-on: ubuntu-22.04
|
2022-02-03 16:24:36 +01:00
|
|
|
steps:
|
2023-04-07 19:57:49 +02:00
|
|
|
- uses: actions/checkout@v3
|
2022-02-03 16:24:36 +01:00
|
|
|
- name: clang-format
|
|
|
|
run: |
|
2023-03-16 12:46:07 +01:00
|
|
|
docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./plugins/example_plugin/src
|
2023-12-16 17:16:43 +01:00
|
|
|
docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./plugins/example_plugin_cpp/src
|
2023-10-14 09:42:08 +02:00
|
|
|
docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./plugins/storage_test_plugin/src --exclude ./plugins/storage_test_plugin/src/catch2
|
2022-02-03 16:24:36 +01:00
|
|
|
build-examples:
|
2022-09-04 09:51:04 +02:00
|
|
|
runs-on: ubuntu-22.04
|
2022-02-03 16:24:36 +01:00
|
|
|
needs: clang-format-examples
|
|
|
|
steps:
|
2023-04-07 19:57:49 +02:00
|
|
|
- uses: actions/checkout@v3
|
2022-02-03 16:24:36 +01:00
|
|
|
- name: build binary
|
|
|
|
run: |
|
|
|
|
docker build . -f Dockerfile.buildexamples -t builder
|
|
|
|
cd ./plugins/example_plugin
|
2023-12-16 17:16:43 +01:00
|
|
|
docker run --rm -v ${PWD}:/project builder make
|
|
|
|
cd ../example_plugin_cpp
|
|
|
|
docker run --rm -v ${PWD}:/project builder make
|
|
|
|
cd ../storage_test_plugin
|
2022-02-03 16:24:36 +01:00
|
|
|
docker run --rm -v ${PWD}:/project builder make
|
|
|
|
- uses: actions/upload-artifact@master
|
|
|
|
with:
|
|
|
|
name: binary
|
|
|
|
path: "*.wps"
|