File tree 20 files changed +66
-33
lines changed
solutions/zig/01-at4/code
20 files changed +66
-33
lines changed Original file line number Diff line number Diff line change 8
8
9
9
set -e # Exit on failure
10
10
11
- exec zig-out/bin/zig " $@ "
11
+ exec $( dirname $0 ) / zig-out/bin/main " $@ "
Original file line number Diff line number Diff line change 1
1
# Zig build artifacts
2
- .zig-cache /
2
+ main
3
3
zig-cache /
4
+ .zig-cache /
4
5
zig-out /
5
6
6
7
# Compiled binary output
7
- main
8
8
bin /
9
9
! bin /.gitkeep
10
10
13
13
* .h
14
14
15
15
# Ignore OS and editor specific files
16
- .DS_Store
16
+ ** / .DS_Store
17
17
* .swp
18
- * ~
18
+ * ~
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ Time to move on to the next stage!
30
30
31
31
Note: This section is for stages 2 and beyond.
32
32
33
- 1 . Ensure you have ` zig (0.12 ) ` installed locally
33
+ 1 . Ensure you have ` zig (0.14 ) ` installed locally
34
34
1 . Run ` ./your_program.sh ` to run your program, which is implemented in
35
35
` src/main.zig ` .
36
36
1 . Commit your changes and run ` git push origin master ` to submit your solution
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ const std = @import("std");
3
3
// Learn more about this file here: https://ziglang.org/learn/build-system
4
4
pub fn build (b : * std.Build ) void {
5
5
const exe = b .addExecutable (.{
6
- .name = "zig " ,
6
+ .name = "main " ,
7
7
.root_source_file = b .path ("src/main.zig" ),
8
8
.target = b .standardTargetOptions (.{}),
9
9
.optimize = b .standardOptimizeOption (.{}),
Original file line number Diff line number Diff line change 1
1
.{
2
- .name = "zig" ,
2
+ .name = .codecrafters_http_server ,
3
+ .fingerprint = 0xe0b9fabc244c324e ,
4
+
3
5
// This is a [Semantic Version](https://semver.org/).
4
6
// In a future version of Zig it will be used for package deduplication.
5
7
.version = "0.0.0" ,
6
8
7
9
// This field is optional.
8
10
// This is currently advisory only; Zig does not yet do anything
9
11
// with this value.
10
- // .minimum_zig_version = "0.11 .0",
12
+ .minimum_zig_version = "0.14 .0" ,
11
13
12
14
// This field is optional.
13
15
// Each dependency must either provide a `url` and `hash`, or a `path`.
Original file line number Diff line number Diff line change @@ -7,5 +7,5 @@ debug: false
7
7
# Use this to change the Zig version used to run your code
8
8
# on Codecrafters.
9
9
#
10
- # Available versions: zig-0.12
11
- language_pack : zig-0.12
10
+ # Available versions: zig-0.14
11
+ language_pack : zig-0.14
Original file line number Diff line number Diff line change @@ -21,4 +21,4 @@ set -e # Exit early if any commands fail
21
21
#
22
22
# - Edit this to change how your program runs locally
23
23
# - Edit .codecrafters/run.sh to change how your program runs remotely
24
- exec zig-out/bin/zig " $@ "
24
+ exec $( dirname $0 ) / zig-out/bin/main " $@ "
Original file line number Diff line number Diff line change
1
+ # syntax=docker/dockerfile:1.7-labs
2
+ FROM alpine:3.20
3
+
4
+ RUN apk add --no-cache 'xz>=5.6' 'curl>=8.9'
5
+
6
+ # Download and install Zig
7
+ RUN curl -O https://ziglang.org/download/0.14.0/zig-linux-x86_64-0.14.0.tar.xz \
8
+ && tar -xf zig-linux-x86_64-0.14.0.tar.xz \
9
+ && mv zig-linux-x86_64-0.14.0 /usr/local/zig \
10
+ && rm zig-linux-x86_64-0.14.0.tar.xz
11
+
12
+ # Add Zig to PATH
13
+ ENV PATH="/usr/local/zig:${PATH}"
14
+
15
+ ENV CODECRAFTERS_DEPENDENCY_FILE_PATHS="build.zig,build.zig.zon"
16
+
17
+ WORKDIR /app
18
+
19
+ # .git & README.md are unique per-repository. We ignore them on first copy to prevent cache misses
20
+ COPY --exclude=.git --exclude=README.md . /app
21
+
22
+ # This runs zig build
23
+ RUN .codecrafters/compile.sh
24
+
25
+ # Cache build directory
26
+ RUN mkdir -p /app-cached
27
+ RUN mv /app/.zig-cache /app-cached/.zig-cache || true
Original file line number Diff line number Diff line change 8
8
9
9
set -e # Exit on failure
10
10
11
- exec zig-out/bin/zig " $@ "
11
+ exec $( dirname $0 ) / zig-out/bin/main " $@ "
Original file line number Diff line number Diff line change 1
1
# Zig build artifacts
2
- .zig-cache /
2
+ main
3
3
zig-cache /
4
+ .zig-cache /
4
5
zig-out /
5
6
6
7
# Compiled binary output
7
- main
8
8
bin /
9
9
! bin /.gitkeep
10
10
13
13
* .h
14
14
15
15
# Ignore OS and editor specific files
16
- .DS_Store
16
+ ** / .DS_Store
17
17
* .swp
18
- * ~
18
+ * ~
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ Time to move on to the next stage!
30
30
31
31
Note: This section is for stages 2 and beyond.
32
32
33
- 1 . Ensure you have ` zig (0.12 ) ` installed locally
33
+ 1 . Ensure you have ` zig (0.14 ) ` installed locally
34
34
1 . Run ` ./your_program.sh ` to run your program, which is implemented in
35
35
` src/main.zig ` .
36
36
1 . Commit your changes and run ` git push origin master ` to submit your solution
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ const std = @import("std");
3
3
// Learn more about this file here: https://ziglang.org/learn/build-system
4
4
pub fn build (b : * std.Build ) void {
5
5
const exe = b .addExecutable (.{
6
- .name = "zig " ,
6
+ .name = "main " ,
7
7
.root_source_file = b .path ("src/main.zig" ),
8
8
.target = b .standardTargetOptions (.{}),
9
9
.optimize = b .standardOptimizeOption (.{}),
Original file line number Diff line number Diff line change 1
1
.{
2
- .name = "zig" ,
2
+ .name = .codecrafters_http_server ,
3
+ .fingerprint = 0xe0b9fabc244c324e ,
4
+
3
5
// This is a [Semantic Version](https://semver.org/).
4
6
// In a future version of Zig it will be used for package deduplication.
5
7
.version = "0.0.0" ,
6
8
7
9
// This field is optional.
8
10
// This is currently advisory only; Zig does not yet do anything
9
11
// with this value.
10
- // .minimum_zig_version = "0.11 .0",
12
+ .minimum_zig_version = "0.14 .0" ,
11
13
12
14
// This field is optional.
13
15
// Each dependency must either provide a `url` and `hash`, or a `path`.
Original file line number Diff line number Diff line change @@ -7,5 +7,5 @@ debug: false
7
7
# Use this to change the Zig version used to run your code
8
8
# on Codecrafters.
9
9
#
10
- # Available versions: zig-0.12
11
- language_pack : zig-0.12
10
+ # Available versions: zig-0.14
11
+ language_pack : zig-0.14
Original file line number Diff line number Diff line change @@ -21,4 +21,4 @@ set -e # Exit early if any commands fail
21
21
#
22
22
# - Edit this to change how your program runs locally
23
23
# - Edit .codecrafters/run.sh to change how your program runs remotely
24
- exec zig-out/bin/zig " $@ "
24
+ exec $( dirname $0 ) / zig-out/bin/main " $@ "
Original file line number Diff line number Diff line change 8
8
9
9
set -e # Exit on failure
10
10
11
- exec zig-out/bin/zig " $@ "
11
+ exec $( dirname $0 ) / zig-out/bin/main " $@ "
Original file line number Diff line number Diff line change 1
1
# Zig build artifacts
2
- .zig-cache /
2
+ main
3
3
zig-cache /
4
+ .zig-cache /
4
5
zig-out /
5
6
6
7
# Compiled binary output
7
- main
8
8
bin /
9
9
! bin /.gitkeep
10
10
13
13
* .h
14
14
15
15
# Ignore OS and editor specific files
16
- .DS_Store
16
+ ** / .DS_Store
17
17
* .swp
18
- * ~
18
+ * ~
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ const std = @import("std");
3
3
// Learn more about this file here: https://ziglang.org/learn/build-system
4
4
pub fn build (b : * std.Build ) void {
5
5
const exe = b .addExecutable (.{
6
- .name = "zig " ,
6
+ .name = "main " ,
7
7
.root_source_file = b .path ("src/main.zig" ),
8
8
.target = b .standardTargetOptions (.{}),
9
9
.optimize = b .standardOptimizeOption (.{}),
Original file line number Diff line number Diff line change 1
1
.{
2
- .name = "zig" ,
2
+ .name = .codecrafters_http_server ,
3
+ .fingerprint = 0xe0b9fabc244c324e ,
4
+
3
5
// This is a [Semantic Version](https://semver.org/).
4
6
// In a future version of Zig it will be used for package deduplication.
5
7
.version = "0.0.0" ,
6
8
7
9
// This field is optional.
8
10
// This is currently advisory only; Zig does not yet do anything
9
11
// with this value.
10
- // .minimum_zig_version = "0.11 .0",
12
+ .minimum_zig_version = "0.14 .0" ,
11
13
12
14
// This field is optional.
13
15
// Each dependency must either provide a `url` and `hash`, or a `path`.
Original file line number Diff line number Diff line change 1
1
attributes :
2
- required_executable : zig (0.12 )
2
+ required_executable : zig (0.14 )
3
3
user_editable_file : src/main.zig
You can’t perform that action at this time.
0 commit comments