diff --git a/.circleci/config.yml b/.circleci/config.yml index 51f4b1d66bd179dae44e9c936c4bb3ef6f5165e9..26e3374725240d64ef6f2e894ef1655910867c2b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -15,16 +15,16 @@ jobs: - run: git submodule update --init --recursive - run: apt -y install xz-utils jq - - run: ./download_zig.sh 0.8.0-dev.1767+c28d1fe17 + - run: ./download_zig.sh 0.8.0-dev.2093+c47028cd0 - run: zig version - run: zig env - run: zig build -Dbootstrap - - run: ./zig-cache/bin/zigmod fetch + - run: ./zig-out/bin/zigmod fetch - run: ./build_all_zig.sh - store_artifacts: - path: ./zig-cache/bin/ + path: ./zig-out/bin/ destination: /artifacts/ - run: mkdir -p /artifacts/ - - run: cp -R ./zig-cache/bin/. /artifacts/ + - run: cp -R ./zig-out/bin/. /artifacts/ - run: ./make_release.sh diff --git a/.gitignore b/.gitignore index bf8bf129af2bd67d6ca91184af376b57668dcbc8..0f1d5081ee8e6649272f32c4c54bbe5c223dc2d3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ -/zig-cache +/zig-* /.zigmod diff --git a/README.md b/README.md index 3b55c033532a47392f248d7be59ba9e30f69dbc4..f15efde5bb6ef5a3e7c2c3cc0dda5c747e2fa43a 100644 --- a/README.md +++ b/README.md @@ -17,20 +17,20 @@ A package manager for the Zig programming language. - https://github.com/nektro/zigmod/releases ## Built With -- Zig master `0.8.0-dev.1767+c28d1fe17` +- Zig master `0.8.0-dev.2093+c47028cd0` ### Build from Source Initially, ``` $ git clone https://github.com/nektro/zigmod --recursive $ zig build -Dbootstrap -$ ./zig-cache/bin/zigmod fetch +$ ./zig-out/bin/zigmod fetch ``` To build, ``` $ zig build -$ ./zig-cache/bin/zigmod +$ ./zig-out/bin/zigmod ``` ## Usage diff --git a/docs/README.md b/docs/README.md index f65c7c2de8dc68ba80a33b951f26391aa26972fc..58338d2ce2fe5fa3b6933542b52d5ecfe1caf1a6 100644 --- a/docs/README.md +++ b/docs/README.md @@ -8,7 +8,7 @@ You can learn more about Zig here: The rest of this documentation will assume you already have Zig installed. -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`. +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`. ## Download 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, $ git clone https://github.com/nektro/zigmod --recursive $ cd zigmod $ zig build -Dbootstrap -$ ./zig-cache/bin/zigmod fetch +$ ./zig-out/bin/zigmod fetch $ zig build -$ ./zig-cache/bin/zigmod +$ ./zig-out/bin/zigmod ``` ## Getting Started