Skip to content

Commit

Permalink
Added CI and Recommended Extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
APBashara committed Aug 15, 2024
1 parent b1aa7b7 commit 44f0cb7
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/c-cpp.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: C/C++ CI

on:
push:
branches:
- main # Run on main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Install ARM Toolchain
run: |
sudo apt-get update
sudo apt-get install -y gcc-arm-none-eabi binutils-arm-none-eabi
- name: Build with make
run: |
make
# - name: Run checks
# run: TODO: Create more CI/SIL Tests
24 changes: 24 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"recommendations": [
"arm.keil-studio-pack",
"ms-vscode.cpptools",
"ms-vscode.cpptools-extension-pack",
"twxs.cmake",
"marus25.cortex-debug",
"cschlosser.doxdocgen",
"github.copilot",
"github.copilot-chat",
"github.vscode-pull-request-github",
"eamodio.gitlens",
"trond-snekvik.gnu-mapfiles",
"ms-vscode.makefile-tools",
"shd101wyy.markdown-preview-enhanced",
"ms-vsliveshare.vsliveshare",
"mcu-debug.memory-view",
"mcu-debug.peripheral-viewer",
"mcu-debug.rtos-views",
"ms-vscode.vscode-serial-monitor",
"redhat.vscode-yaml",
"dan-c-underwood.arm"
]
}

0 comments on commit 44f0cb7

Please sign in to comment.