commit 938420285b53653449172e0a7ccaef79406583dd
parent 2e7bdd358dd26f673f39d314889db907cc5ccb91
Author: citbl <citbl@citbl.org>
Date: Sun, 5 Oct 2025 23:06:54 +1000
remove crud
Diffstat:
4 files changed, 0 insertions(+), 76 deletions(-)
diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml
@@ -1,33 +0,0 @@
-name: C/C++ CI
-
-on:
- push:
- branches: ["master"]
- pull_request:
- branches: ["master"]
-
-jobs:
- build:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v4
-
- - name: Install dependencies (gcc, pkg-config, libgccjit)
- run: |
- sudo apt-get update
- sudo apt-get install -y build-essential pkg-config libgccjit-13-dev || \
- sudo apt-get install -y libgccjit-12-dev
-
- - name: Checks
- run: |
- pkg-config --cflags --libs libgccjit || true
- make V=1
-
- - name: Build
- run: make again
-
- - name: Test
- run: make test
-
- - name: Sanitizers
- run: make check
diff --git a/.vscode/launch.json b/.vscode/launch.json
@@ -1,20 +0,0 @@
-{
- "version": "0.2.0",
- "configurations": [
- {
- "name": "Build & Debug",
- "type": "cppdbg",
- "request": "launch",
- "program": "${workspaceFolder}/oxc",
- "args": [
- "${workspaceFolder}/ex2.ox"
- ],
- "stopAtEntry": false,
- "cwd": "${fileDirname}",
- "environment": [],
- "externalConsole": false,
- "MIMode": "lldb",
- "preLaunchTask": "build-ox"
- }
- ]
-}
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
@@ -1,21 +0,0 @@
-// .vscode/tasks.json
-{
- "version": "2.0.0",
- "tasks": [
- {
- "label": "build-ox",
- "type": "shell",
- "command": "make",
- "args": ["check"],
- "problemMatcher": [],
- "presentation": {
- "reveal": "never",
- "echo": false,
- "focus": false,
- "panel": "shared",
- "showReuseMessage": false,
- "clear": false
- }
- }
- ]
-}
diff --git a/README.md b/README.md
@@ -1,5 +1,3 @@
### Ox Programming language
WIP
-
-[](https://github.com/keyle/baby-c/actions/workflows/c-cpp.yml)