Skip to content

Commit 1378231

Browse files
committed
Disable automatic CI action triggers
1 parent 2c63b11 commit 1378231

File tree

6 files changed

+24
-13
lines changed

6 files changed

+24
-13
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ name: ✅ CI
1616

1717
on:
1818
workflow_dispatch:
19-
pull_request:
20-
push:
21-
branches:
22-
- main
23-
schedule:
24-
- cron: "0 12 * * 0"
19+
# pull_request:
20+
# push:
21+
# branches:
22+
# - main
23+
# schedule:
24+
# - cron: "0 12 * * 0"
2525

2626
jobs:
2727
ci:

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: 🚀 Deploy
22

33
on:
44
workflow_dispatch:
5-
release:
6-
types: [published]
5+
# release:
6+
# types: [published]
77

88
jobs:
99
deploy:

nearpoint/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Nearpoint linker plugin
2+
3+
> [!WARNING]
4+
> 🚧 This repo is under construction 🚧
5+
6+
This does not work and much of the code is scaffolding that was made with the help of the LLM Claude Sonnet.

runtime/linux_armv8/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Linux armv8 implementation of libexcept
2+
3+
> [!TIP]
4+
> We haven't begun work on this yet, but this is something we plan to implement
5+
> in the future.

runtime/linux_x86_64/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Linux x86_64 implementation of libexcept
2+
3+
> [!TIP]
4+
> We haven't begun work on this yet, but this is something we plan to implement
5+
> in the future.

test_package/conanfile.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,8 @@ class TestPackageConan(ConanFile):
2424
generators = "VirtualRunEnv", "CMakeDeps", "CMakeToolchain"
2525

2626
def build_requirements(self):
27-
<<<<<<<< HEAD:v1/test_package/conanfile.py
28-
self.tool_requires("ninja/[^1.13.1]")
29-
self.tool_requires("cmake/[^4.0.0]")
30-
========
3127
self.tool_requires("cmake/[^4.0.0]")
3228
self.tool_requires("ninja/[^1.3.0]")
33-
>>>>>>>> f7f80c8 (:rocket: Add LLVM support):v2/test_package/conanfile.py
3429

3530
def requirements(self):
3631
self.requires(self.tested_reference_str)

0 commit comments

Comments
 (0)