Skip to content

Commit

Permalink
Merge branch 'rc-0.1.13'
Browse files Browse the repository at this point in the history
  • Loading branch information
brendanfh committed Nov 9, 2024
2 parents 6bd633f + 3f5f867 commit f4e769d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/onyx-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ jobs:
cmd.exe /c 'build.bat dist'
- name: Upload Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.artifact_name }}
path: dist
Expand All @@ -245,7 +245,7 @@ jobs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
steps:
- name: Download artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
path: artifacts
- name: Create Release
Expand Down
8 changes: 6 additions & 2 deletions core/alloc/alloc.onyx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ package core.alloc
#load "./logging"
#load "./gc"
#load "./debug"
#load "./memwatch"

use runtime
#if runtime.runtime == .Onyx {
#load "./memwatch"
}

use core.memory
use core.intrinsics.types {type_is_function}
Expand Down Expand Up @@ -112,4 +116,4 @@ report_leaks_in_scope :: macro () {
__old_allocator := context.allocator
context.allocator = alloc.as_allocator(&__ha)
defer context.allocator = __old_allocator
}
}
2 changes: 0 additions & 2 deletions core/os/dir.onyx
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ DirectoryEntry :: struct {
identifier : u32;
name_length : u32;
name_data : [256] u8;


}

/// Returns the `str` of the name, pointing into the `DirectoryEntry` for data.
Expand Down

0 comments on commit f4e769d

Please sign in to comment.