Skip to content

Commit ad9ad55

Browse files
committed
Merge branch 'main' of https://github.com/ZestCommunity/ZestCode into refactor/vfs
2 parents b69f874 + 9611c99 commit ad9ad55

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+1968
-1255
lines changed

.clangd

Lines changed: 0 additions & 5 deletions
This file was deleted.

.github/workflows/build.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Build Action
2+
3+
on:
4+
push:
5+
branches: "**"
6+
pull_request:
7+
branches: "**"
8+
9+
workflow_dispatch:
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v4
17+
18+
- name: Build Project
19+
id: build
20+
uses: ZestCommunity/[email protected]
21+
22+
- name: Upload Artifact
23+
uses: actions/upload-artifact@v4
24+
continue-on-error: true # The main point of this is to build the monolith file, not to try and upload it. Therefore, the action shouldn't fail if something were to be changed in the future that would cause this step to fail. (Especially considering ZestCode is still in development and this may very well change.
25+
with:
26+
name: ${{ steps.build.outputs.name }}
27+
path: ${{ github.workspace }}/build/program.bin

.gitignore

Lines changed: 7 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,10 @@
1+
# IDEs
12
.vscode/
23
.idea/
3-
bin/
4-
.*.sw*
5-
template/
6-
version
7-
cquery_log.txt
8-
compile_commands.json
9-
.ccls-cache/
10-
.ccls
11-
temp.log
12-
temp.errors
13-
.d/
14-
.clangd/
15-
.cache/
4+
# OS
165
.DS_Store
17-
*.zip
18-
firmware/libv5rt
6+
# Meson
7+
subprojects/*/
8+
# clangd
9+
/.clangd
10+
.cache/

Makefile

Lines changed: 0 additions & 114 deletions
This file was deleted.

0 commit comments

Comments
 (0)