libcurlwrapper/.github/workflows/pr.yml

26 lines
641 B
YAML
Raw Normal View History

2023-01-20 18:49:24 +01:00
name: CI-PR
on: [pull_request]
jobs:
clang-format:
runs-on: ubuntu-22.04
steps:
2024-05-05 14:21:00 +02:00
- uses: actions/checkout@v4
2023-01-20 18:49:24 +01:00
- name: clang-format
run: |
2023-03-16 19:51:40 +01:00
docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./source
2023-01-20 18:49:24 +01:00
build-lib:
runs-on: ubuntu-22.04
needs: clang-format
steps:
2024-05-05 14:21:00 +02:00
- uses: actions/checkout@v4
2023-01-20 18:49:24 +01:00
- name: build lib
run: |
docker build . -t tmp
docker build . -f Dockerfile.buildlocal -t builder
docker run --rm -v ${PWD}:/project builder make
- uses: actions/upload-artifact@master
with:
name: lib
path: "lib/*.a"