You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You have successfully built a new test in the suite!
3
+
## Description
4
4
5
-
There are some remaining tasks to do before you are ready to open a pull request, however.
5
+
Zinc is a web framework written in pure Zig with a focus on high performance, usability, security, and extensibility.
6
6
7
-
## Next Steps
7
+
*[Documentation](https://zinc.zon.dev/)
8
8
9
-
1. Gather your source code.
10
-
11
-
You will need to ensure that your source code is beneath this directory. The most common solution is to include a `src` directory and place your source code there.
12
-
13
-
2. Edit `benchmark_config.json`
14
-
15
-
You will need alter `benchmark_config.json` to have the appropriate end-points and port specified.
16
-
17
-
3. Create `zinc.dockerfile`
18
-
19
-
This is the dockerfile that is built into a docker image and run when a benchmark test is run. Specifically, this file tells the suite how to build and start your test application.
20
-
21
-
You can create multiple implementations and they will all conform to `[name in benchmark_config.json].dockerfile`. For example, the `default` implementation in `benchmark_config.json` will be `zinc.dockerfile`, but if you wanted to make another implementation that did only the database tests for MySQL, you could make `zinc-mysql.dockerfile` and have an entry in your `benchmark_config.json` for `zinc-mysql`.
22
-
23
-
4. Test your application
24
-
25
-
$ tfb --mode verify --test zinc
26
-
27
-
This will run the suite in `verify` mode for your test. This means that no benchmarks will be captured and we will test that we can hit your implementation end-points specified by `benchmark_config.json` and that the response is correct.
28
-
29
-
Once you are able to successfully run your test through our suite in this way **and** your test passes our validation, you may move on to the next step.
30
-
31
-
5. Add your test to `.github/workflows/build.yml`
32
-
33
-
Edit `.github/workflows/build.yml` to ensure that Github Actions will automatically run our verification tests against your new test. This file is kept in alphabetical order, so find where `TESTDIR=Zig/zinc` should be inserted under `env > matrix` and put it there.
34
-
35
-
6. Fix this `README.md` and open a pull request
36
-
37
-
Starting on line 49 is your actual `README.md` that will sit with your test implementation. Update all the dummy values to their correct values so that when people visit your test in our Github repository, they will be greated with information on how your test implementation works and where to look for useful source code.
38
-
39
-
After you have the real `README.md` file in place, delete everything above line 59 and you are ready to open a pull request.
0 commit comments