File tree 3 files changed +8
-6
lines changed 3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ jobs:
223
223
cmd.exe /c 'build.bat dist'
224
224
225
225
- name : Upload Artifacts
226
- uses : actions/upload-artifact@v3
226
+ uses : actions/upload-artifact@v4
227
227
with :
228
228
name : ${{ matrix.artifact_name }}
229
229
path : dist
@@ -245,7 +245,7 @@ jobs:
245
245
upload_url : ${{ steps.create_release.outputs.upload_url }}
246
246
steps :
247
247
- name : Download artifacts
248
- uses : actions/download-artifact@v2
248
+ uses : actions/download-artifact@v4
249
249
with :
250
250
path : artifacts
251
251
- name : Create Release
Original file line number Diff line number Diff line change @@ -9,7 +9,11 @@ package core.alloc
9
9
#load "./logging"
10
10
#load "./gc"
11
11
#load "./debug"
12
- #load "./memwatch"
12
+
13
+ use runtime
14
+ #if runtime.runtime == .Onyx {
15
+ #load "./memwatch"
16
+ }
13
17
14
18
use core.memory
15
19
use core.intrinsics.types {type_is_function}
@@ -112,4 +116,4 @@ report_leaks_in_scope :: macro () {
112
116
__old_allocator := context.allocator
113
117
context.allocator = alloc.as_allocator(&__ha)
114
118
defer context.allocator = __old_allocator
115
- }
119
+ }
Original file line number Diff line number Diff line change @@ -17,8 +17,6 @@ DirectoryEntry :: struct {
17
17
identifier : u32;
18
18
name_length : u32;
19
19
name_data : [256] u8;
20
-
21
-
22
20
}
23
21
24
22
/// Returns the `str` of the name, pointing into the `DirectoryEntry` for data.
You can’t perform that action at this time.
0 commit comments