From 21665ff7281aba7fcdfc75bd342ae0e4a9a49425 Mon Sep 17 00:00:00 2001 From: uzhhhhh <157295102+uzhhhhh@users.noreply.github.com> Date: Sun, 21 Jan 2024 16:04:00 +0100 Subject: [PATCH 1/2] Create c-cpp.yml --- .github/workflows/c-cpp.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/c-cpp.yml diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml new file mode 100644 index 0000000..a383a52 --- /dev/null +++ b/.github/workflows/c-cpp.yml @@ -0,0 +1,23 @@ +name: C/C++ CI + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: configure + run: ./configure + - name: make + run: make + - name: make check + run: make check + - name: make distcheck + run: make distcheck From 8076b88776fae6a75c41ccb2d03cbf2cc608aa41 Mon Sep 17 00:00:00 2001 From: uzhhhhh <157295102+uzhhhhh@users.noreply.github.com> Date: Sun, 21 Jan 2024 15:44:05 +0000 Subject: [PATCH 2/2] Pending changes exported from your codespace --- .vscode/extensions.json | 3 +++ .vscode/settings.json | 8 ++++++++ WirelessCarPlay.code-workspace | 13 +++++++++++++ 3 files changed, 24 insertions(+) create mode 100644 .vscode/extensions.json create mode 100644 .vscode/settings.json create mode 100644 WirelessCarPlay.code-workspace diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..7e257db --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,3 @@ +{ + "recommendations": [] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..f30ffcb --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,8 @@ +{ + "makefile.alwaysPostConfigure": true, + "makefile.alwaysPreConfigure": true, + "dotnetAcquisitionExtension.existingDotnetPath": [ + autoDetect + + ] +} \ No newline at end of file diff --git a/WirelessCarPlay.code-workspace b/WirelessCarPlay.code-workspace new file mode 100644 index 0000000..104fb52 --- /dev/null +++ b/WirelessCarPlay.code-workspace @@ -0,0 +1,13 @@ +{ + "folders": [ + { + "path": "." + }, + { + "path": "../.codespaces" + } + ], + "settings": { + "dotnetAcquisitionExtension.existingDotnetPath": [] + } +} \ No newline at end of file