| author | |
| committer | |
| log | 5cf6a2139f674152373e30b357b5bba676ef233d |
| tree | 27f2b32fdc243df2d4de6493be5acc2346db7cfd |
| parent | 30f101f0bb7e589e7359a0a647b048a5e7d9657d |
4 files changed, 11 insertions(+), 11 deletions(-)
.circleci/config.yml+4-4| ... | ... | @@ -15,16 +15,16 @@ jobs: |
| 15 | 15 | - run: git submodule update --init --recursive |
| 16 | 16 | |
| 17 | 17 | - run: apt -y install xz-utils jq |
| 18 | - run: ./download_zig.sh 0.8.0-dev.1767+c28d1fe17 | |
| 18 | - run: ./download_zig.sh 0.8.0-dev.2093+c47028cd0 | |
| 19 | 19 | - run: zig version |
| 20 | 20 | - run: zig env |
| 21 | 21 | - run: zig build -Dbootstrap |
| 22 | - run: ./zig-cache/bin/zigmod fetch | |
| 22 | - run: ./zig-out/bin/zigmod fetch | |
| 23 | 23 | - run: ./build_all_zig.sh |
| 24 | 24 | - store_artifacts: |
| 25 | path: ./zig-cache/bin/ | |
| 25 | path: ./zig-out/bin/ | |
| 26 | 26 | destination: /artifacts/ |
| 27 | 27 | |
| 28 | 28 | - run: mkdir -p /artifacts/ |
| 29 | - run: cp -R ./zig-cache/bin/. /artifacts/ | |
| 29 | - run: cp -R ./zig-out/bin/. /artifacts/ | |
| 30 | 30 | - run: ./make_release.sh |
.gitignore+1-1| ... | ... | @@ -1,2 +1,2 @@ |
| 1 | /zig-cache | |
| 1 | /zig-* | |
| 2 | 2 | /.zigmod |
README.md+3-3| ... | ... | @@ -17,20 +17,20 @@ A package manager for the Zig programming language. |
| 17 | 17 | - https://github.com/nektro/zigmod/releases |
| 18 | 18 | |
| 19 | 19 | ## Built With |
| 20 | - Zig master `0.8.0-dev.1767+c28d1fe17` | |
| 20 | - Zig master `0.8.0-dev.2093+c47028cd0` | |
| 21 | 21 | |
| 22 | 22 | ### Build from Source |
| 23 | 23 | Initially, |
| 24 | 24 | ``` |
| 25 | 25 | $ git clone https://github.com/nektro/zigmod --recursive |
| 26 | 26 | $ zig build -Dbootstrap |
| 27 | $ ./zig-cache/bin/zigmod fetch | |
| 27 | $ ./zig-out/bin/zigmod fetch | |
| 28 | 28 | ``` |
| 29 | 29 | |
| 30 | 30 | To build, |
| 31 | 31 | ``` |
| 32 | 32 | $ zig build |
| 33 | $ ./zig-cache/bin/zigmod | |
| 33 | $ ./zig-out/bin/zigmod | |
| 34 | 34 | ``` |
| 35 | 35 | |
| 36 | 36 | ## Usage |
docs/README.md+3-3| ... | ... | @@ -8,7 +8,7 @@ You can learn more about Zig here: |
| 8 | 8 | |
| 9 | 9 | The rest of this documentation will assume you already have Zig installed. |
| 10 | 10 | |
| 11 | As 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`. | |
| 11 | As 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`. | |
| 12 | 12 | |
| 13 | 13 | ## Download |
| 14 | 14 | You 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 | 19 | $ git clone https://github.com/nektro/zigmod --recursive |
| 20 | 20 | $ cd zigmod |
| 21 | 21 | $ zig build -Dbootstrap |
| 22 | $ ./zig-cache/bin/zigmod fetch | |
| 22 | $ ./zig-out/bin/zigmod fetch | |
| 23 | 23 | $ zig build |
| 24 | $ ./zig-cache/bin/zigmod | |
| 24 | $ ./zig-out/bin/zigmod | |
| 25 | 25 | ``` |
| 26 | 26 | |
| 27 | 27 | ## Getting Started |