Skip to content

Commit

Permalink
Merge pull request #16 from uzhhhhh/biuld
Browse files Browse the repository at this point in the history
Biuld
  • Loading branch information
45clouds authored Jun 24, 2024
2 parents e7a2d3e + 8076b88 commit 51145ef
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
@@ -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
3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": []
}
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"makefile.alwaysPostConfigure": true,
"makefile.alwaysPreConfigure": true,
"dotnetAcquisitionExtension.existingDotnetPath": [
autoDetect

]
}
13 changes: 13 additions & 0 deletions WirelessCarPlay.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"folders": [
{
"path": "."
},
{
"path": "../.codespaces"
}
],
"settings": {
"dotnetAcquisitionExtension.existingDotnetPath": []
}
}

0 comments on commit 51145ef

Please sign in to comment.