authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-05-02 23:35:38 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-05-02 23:35:38 -07:00
log5cf6a2139f674152373e30b357b5bba676ef233d
tree27f2b32fdc243df2d4de6493be5acc2346db7cfd
parent30f101f0bb7e589e7359a0a647b048a5e7d9657d

update to zig master `0.8.0-dev.2093+c47028cd0`


4 files changed, 11 insertions(+), 11 deletions(-)

.circleci/config.yml+4-4
...@@ -15,16 +15,16 @@ jobs:...@@ -15,16 +15,16 @@ jobs:
15 - run: git submodule update --init --recursive15 - run: git submodule update --init --recursive
1616
17 - run: apt -y install xz-utils jq17 - run: apt -y install xz-utils jq
18 - run: ./download_zig.sh 0.8.0-dev.1767+c28d1fe1718 - run: ./download_zig.sh 0.8.0-dev.2093+c47028cd0
19 - run: zig version19 - run: zig version
20 - run: zig env20 - run: zig env
21 - run: zig build -Dbootstrap21 - run: zig build -Dbootstrap
22 - run: ./zig-cache/bin/zigmod fetch22 - run: ./zig-out/bin/zigmod fetch
23 - run: ./build_all_zig.sh23 - run: ./build_all_zig.sh
24 - store_artifacts:24 - store_artifacts:
25 path: ./zig-cache/bin/25 path: ./zig-out/bin/
26 destination: /artifacts/26 destination: /artifacts/
2727
28 - run: mkdir -p /artifacts/28 - run: mkdir -p /artifacts/
29 - run: cp -R ./zig-cache/bin/. /artifacts/29 - run: cp -R ./zig-out/bin/. /artifacts/
30 - run: ./make_release.sh30 - run: ./make_release.sh
.gitignore+1-1
...@@ -1,2 +1,2 @@...@@ -1,2 +1,2 @@
1/zig-cache1/zig-*
2/.zigmod2/.zigmod
README.md+3-3
...@@ -17,20 +17,20 @@ A package manager for the Zig programming language....@@ -17,20 +17,20 @@ A package manager for the Zig programming language.
17- https://github.com/nektro/zigmod/releases17- https://github.com/nektro/zigmod/releases
1818
19## Built With19## Built With
20- Zig master `0.8.0-dev.1767+c28d1fe17`20- Zig master `0.8.0-dev.2093+c47028cd0`
2121
22### Build from Source22### Build from Source
23Initially,23Initially,
24```24```
25$ git clone https://github.com/nektro/zigmod --recursive25$ git clone https://github.com/nektro/zigmod --recursive
26$ zig build -Dbootstrap26$ zig build -Dbootstrap
27$ ./zig-cache/bin/zigmod fetch27$ ./zig-out/bin/zigmod fetch
28```28```
2929
30To build,30To build,
31```31```
32$ zig build32$ zig build
33$ ./zig-cache/bin/zigmod33$ ./zig-out/bin/zigmod
34```34```
3535
36## Usage36## Usage
docs/README.md+3-3
...@@ -8,7 +8,7 @@ You can learn more about Zig here:...@@ -8,7 +8,7 @@ You can learn more about Zig here:
88
9The rest of this documentation will assume you already have Zig installed.9The rest of this documentation will assume you already have Zig installed.
1010
11As Zig is still in development itself, if you plan to contribute to Zigmod you will need a master download of Zig. Those can be obtained from https://ziglang.org/download/#release-master. The most recent release Zigmod was verified to work with is `0.8.0-dev.1767+c28d1fe17`.11As Zig is still in development itself, if you plan to contribute to Zigmod you will need a master download of Zig. Those can be obtained from https://ziglang.org/download/#release-master. The most recent release Zigmod was verified to work with is `0.8.0-dev.2093+c47028cd0`.
1212
13## Download13## Download
14You may download a precompiled binary from https://github.com/nektro/zigmod/releases or build the project from source.14You may download a precompiled binary from https://github.com/nektro/zigmod/releases or build the project from source.
...@@ -19,9 +19,9 @@ Assuming you have Zig master installed,...@@ -19,9 +19,9 @@ Assuming you have Zig master installed,
19$ git clone https://github.com/nektro/zigmod --recursive19$ git clone https://github.com/nektro/zigmod --recursive
20$ cd zigmod20$ cd zigmod
21$ zig build -Dbootstrap21$ zig build -Dbootstrap
22$ ./zig-cache/bin/zigmod fetch22$ ./zig-out/bin/zigmod fetch
23$ zig build23$ zig build
24$ ./zig-cache/bin/zigmod24$ ./zig-out/bin/zigmod
25```25```
2626
27## Getting Started27## Getting Started