Skip to content

Commit 1441ccd

Browse files
authored
Merge pull request #116 from codecrafters-io/andy/upgrade
[HTTP] CC-1656 Upgrade Zig to 0.14
2 parents 921681e + 6cf35d1 commit 1441ccd

File tree

20 files changed

+66
-33
lines changed

20 files changed

+66
-33
lines changed

compiled_starters/zig/.codecrafters/run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88

99
set -e # Exit on failure
1010

11-
exec zig-out/bin/zig "$@"
11+
exec $(dirname $0)/zig-out/bin/main "$@"

compiled_starters/zig/.gitignore

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Zig build artifacts
2-
.zig-cache/
2+
main
33
zig-cache/
4+
.zig-cache/
45
zig-out/
56

67
# Compiled binary output
7-
main
88
bin/
99
!bin/.gitkeep
1010

@@ -13,6 +13,6 @@ bin/
1313
*.h
1414

1515
# Ignore OS and editor specific files
16-
.DS_Store
16+
**/.DS_Store
1717
*.swp
18-
*~
18+
*~

compiled_starters/zig/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Time to move on to the next stage!
3030

3131
Note: This section is for stages 2 and beyond.
3232

33-
1. Ensure you have `zig (0.12)` installed locally
33+
1. Ensure you have `zig (0.14)` installed locally
3434
1. Run `./your_program.sh` to run your program, which is implemented in
3535
`src/main.zig`.
3636
1. Commit your changes and run `git push origin master` to submit your solution

compiled_starters/zig/build.zig

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const std = @import("std");
33
// Learn more about this file here: https://ziglang.org/learn/build-system
44
pub fn build(b: *std.Build) void {
55
const exe = b.addExecutable(.{
6-
.name = "zig",
6+
.name = "main",
77
.root_source_file = b.path("src/main.zig"),
88
.target = b.standardTargetOptions(.{}),
99
.optimize = b.standardOptimizeOption(.{}),

compiled_starters/zig/build.zig.zon

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
.{
2-
.name = "zig",
2+
.name = .codecrafters_http_server,
3+
.fingerprint = 0xe0b9fabc244c324e,
4+
35
// This is a [Semantic Version](https://semver.org/).
46
// In a future version of Zig it will be used for package deduplication.
57
.version = "0.0.0",
68

79
// This field is optional.
810
// This is currently advisory only; Zig does not yet do anything
911
// with this value.
10-
//.minimum_zig_version = "0.11.0",
12+
.minimum_zig_version = "0.14.0",
1113

1214
// This field is optional.
1315
// Each dependency must either provide a `url` and `hash`, or a `path`.

compiled_starters/zig/codecrafters.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ debug: false
77
# Use this to change the Zig version used to run your code
88
# on Codecrafters.
99
#
10-
# Available versions: zig-0.12
11-
language_pack: zig-0.12
10+
# Available versions: zig-0.14
11+
language_pack: zig-0.14

compiled_starters/zig/your_program.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ set -e # Exit early if any commands fail
2121
#
2222
# - Edit this to change how your program runs locally
2323
# - 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 "$@"

dockerfiles/zig-0.14.Dockerfile

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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

solutions/zig/01-at4/code/.codecrafters/run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88

99
set -e # Exit on failure
1010

11-
exec zig-out/bin/zig "$@"
11+
exec $(dirname $0)/zig-out/bin/main "$@"

solutions/zig/01-at4/code/.gitignore

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Zig build artifacts
2-
.zig-cache/
2+
main
33
zig-cache/
4+
.zig-cache/
45
zig-out/
56

67
# Compiled binary output
7-
main
88
bin/
99
!bin/.gitkeep
1010

@@ -13,6 +13,6 @@ bin/
1313
*.h
1414

1515
# Ignore OS and editor specific files
16-
.DS_Store
16+
**/.DS_Store
1717
*.swp
18-
*~
18+
*~

solutions/zig/01-at4/code/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Time to move on to the next stage!
3030

3131
Note: This section is for stages 2 and beyond.
3232

33-
1. Ensure you have `zig (0.12)` installed locally
33+
1. Ensure you have `zig (0.14)` installed locally
3434
1. Run `./your_program.sh` to run your program, which is implemented in
3535
`src/main.zig`.
3636
1. Commit your changes and run `git push origin master` to submit your solution

solutions/zig/01-at4/code/build.zig

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const std = @import("std");
33
// Learn more about this file here: https://ziglang.org/learn/build-system
44
pub fn build(b: *std.Build) void {
55
const exe = b.addExecutable(.{
6-
.name = "zig",
6+
.name = "main",
77
.root_source_file = b.path("src/main.zig"),
88
.target = b.standardTargetOptions(.{}),
99
.optimize = b.standardOptimizeOption(.{}),

solutions/zig/01-at4/code/build.zig.zon

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
.{
2-
.name = "zig",
2+
.name = .codecrafters_http_server,
3+
.fingerprint = 0xe0b9fabc244c324e,
4+
35
// This is a [Semantic Version](https://semver.org/).
46
// In a future version of Zig it will be used for package deduplication.
57
.version = "0.0.0",
68

79
// This field is optional.
810
// This is currently advisory only; Zig does not yet do anything
911
// with this value.
10-
//.minimum_zig_version = "0.11.0",
12+
.minimum_zig_version = "0.14.0",
1113

1214
// This field is optional.
1315
// Each dependency must either provide a `url` and `hash`, or a `path`.

solutions/zig/01-at4/code/codecrafters.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ debug: false
77
# Use this to change the Zig version used to run your code
88
# on Codecrafters.
99
#
10-
# Available versions: zig-0.12
11-
language_pack: zig-0.12
10+
# Available versions: zig-0.14
11+
language_pack: zig-0.14

solutions/zig/01-at4/code/your_program.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ set -e # Exit early if any commands fail
2121
#
2222
# - Edit this to change how your program runs locally
2323
# - 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 "$@"

starter_templates/zig/code/.codecrafters/run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88

99
set -e # Exit on failure
1010

11-
exec zig-out/bin/zig "$@"
11+
exec $(dirname $0)/zig-out/bin/main "$@"

starter_templates/zig/code/.gitignore

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Zig build artifacts
2-
.zig-cache/
2+
main
33
zig-cache/
4+
.zig-cache/
45
zig-out/
56

67
# Compiled binary output
7-
main
88
bin/
99
!bin/.gitkeep
1010

@@ -13,6 +13,6 @@ bin/
1313
*.h
1414

1515
# Ignore OS and editor specific files
16-
.DS_Store
16+
**/.DS_Store
1717
*.swp
18-
*~
18+
*~

starter_templates/zig/code/build.zig

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const std = @import("std");
33
// Learn more about this file here: https://ziglang.org/learn/build-system
44
pub fn build(b: *std.Build) void {
55
const exe = b.addExecutable(.{
6-
.name = "zig",
6+
.name = "main",
77
.root_source_file = b.path("src/main.zig"),
88
.target = b.standardTargetOptions(.{}),
99
.optimize = b.standardOptimizeOption(.{}),

starter_templates/zig/code/build.zig.zon

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
.{
2-
.name = "zig",
2+
.name = .codecrafters_http_server,
3+
.fingerprint = 0xe0b9fabc244c324e,
4+
35
// This is a [Semantic Version](https://semver.org/).
46
// In a future version of Zig it will be used for package deduplication.
57
.version = "0.0.0",
68

79
// This field is optional.
810
// This is currently advisory only; Zig does not yet do anything
911
// with this value.
10-
//.minimum_zig_version = "0.11.0",
12+
.minimum_zig_version = "0.14.0",
1113

1214
// This field is optional.
1315
// Each dependency must either provide a `url` and `hash`, or a `path`.

starter_templates/zig/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
attributes:
2-
required_executable: zig (0.12)
2+
required_executable: zig (0.14)
33
user_editable_file: src/main.zig

0 commit comments

Comments
 (0)