| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-04-15 | ci: windows: use llvm-ar.exe from the tarball | Andrew Kelley | |
| 2021-04-15 | ci: better handle of -mcpu | Andrew Kelley | |
| 2021-04-14 | ci: better target triple and mcpu cmake args | Andrew Kelley | |
| 2021-04-14 | ci: freebsd: set the target triple | Andrew Kelley | |
| 2021-04-14 | ci: windows: install git | Andrew Kelley | |
| 2021-04-14 | ci: freebsd: pass -DZIG_USE_LLVM_CONFIG=OFF | Andrew Kelley | |
| 2021-04-14 | ci: aarch64-linux: disable run-translated-c tests | Andrew Kelley | |
| See #8537 | |||
| 2021-04-14 | ci: windows: try using zig-bootstrap to build zig | Andrew Kelley | |
| 2021-04-14 | ci: freebsd: update to llvm 12 | Andrew Kelley | |
| 2021-04-14 | ci: update drone CI to llvm 12 | Andrew Kelley | |
| 2021-04-14 | ci: update linux to llvm12 tarball | Andrew Kelley | |
| 2021-04-14 | ci: macos-aarch64 update dep tarballs for llvm12 | Michael Dusan | |
| 2021-04-12 | CI: update brew before installing pkgs | Jakub Konka | |
| 2021-04-11 | azure: OnMasterSuccess dependsOn BuildMacOS_arm64 | Michael Dusan | |
| 2021-04-11 | ci: remove superfluous linefeed from macos arm64 | Michael Dusan | |
| 2021-04-10 | macos: add aarch64 (arm64) to downloads page | Michael Dusan | |
| 2021-03-28 | ci: update msys2 installer | Andrew Kelley | |
| 2021-03-28 | azure: run pacman with -Sy | Jakub Konka | |
| 2021-03-20 | azure: produce macos arm64 binaries | Michael Dusan | |
| new pipeline `BuildMacOS_arm64` - `vmImage: 'macOS-10.15' ` new `macos_arm64_script` - switch from using `make` to `ninja` - select xcode 12.4 - set zig-cache env variables - build host-zig binary with xcode, link against llvm for x86_64 (target macos 10.15) - build arm64-zig binary with xcode and host-zig, link against llvm for arm64 (target macos 11.0) - ad-hoc codesign arm64 binary with linker - use host-zig for docgen - use host-zig for experimental std lib docs - sync final `release/` hierarchy with `linux_script` - use gnu-tar for good-practices (set owner, set sort) enhance `CMakeLists.txt` - do not build `zig0` when cross-compiling - disable `BYPRODUCTS` directive `zig1.o` to avoid `ninja` error see #8265 | |||
| 2021-03-07 | std: Deprecate the B and Bi format specifiers | LemonBoy | |
| Following #8007 and #8137 let's get rid of the last weird format. | |||
| 2021-01-12 | ci: stop directly pushing web page stuff to s3 | Andrew Kelley | |
| This is now handled by the www.ziglang.org repo deploy script. | |||
| 2021-01-12 | ci: give the updated website content to the website repo | Andrew Kelley | |
| and use master branch not hugo-redesign branch | |||
| 2021-01-12 | ci: add stdDocs to downloads/index.json for master branch | Andrew Kelley | |
| 2021-01-07 | ci: import the update-download-page from www repo | Andrew Kelley | |
| 2021-01-07 | ci: fix path to update-download-page.zig script | Andrew Kelley | |
| 2021-01-07 | ci: add github.com's public key for the ssh clone | Andrew Kelley | |
| 2021-01-07 | ci: pass --override-lib-dir to emit std lib docs | Andrew Kelley | |
| Otherwise we get errors from conflicting std libs. | |||
| 2021-01-07 | ci: don't use ninja on linux | Andrew Kelley | |
| I got this error when re-running the cmake line setting -DZIG_EXECUTABLE: ``` ninja: warning: multiple rules generate zig1.o. builds involving this target will not be correct; continuing anyway [-w dupbuild=warn] ``` But it works fine with make. | |||
| 2021-01-07 | ci: add missing target/mcpu args to zig cc | Andrew Kelley | |
| In the previous commit, I forgot to add these. | |||
| 2021-01-06 | ci: rework linux script | Andrew Kelley | |
| * no longer depend on apt.llvm.org, instead we rely on a zig-bootstrap tarball with pre-built Zig, LLVM, LLD, and Clang. Similar to the Windows Dev Kit but for Linux. This also makes the script no longer depend on Docker, libxml2, or GCC. * remove bash retry logic; it was only needed for flaky apt.llvm.org and isn't needed for the other resources we download. * build and upload the experimental std lib automatically generated docs. langref.html is moved to docs/langref.html because the std lib docs are in docs/std/. * the superfluous "zig" directory in $prefix/lib/zig/std/std.zig is removed from the tarball. * update_download_page makes a commit in the www.ziglang.org repository updating data/releases.json so that repository can manage deploys. | |||
| 2021-01-06 | Azure CI: update MSYS version | Frank Denis | |
| 2021-01-04 | ci: omit stage2 backend from stage1 on Windows | Andrew Kelley | |
| to avoid out-of-memory on the CI runs. | |||
| 2021-01-03 | drone ci: skip compile error tests to save time | Andrew Kelley | |
| These are covered by other CI scripts and we're up against Drone CI time limits. | |||
| 2021-01-01 | ci: fix `git describe` | Jay Petacat | |
| git describe is used for version string creation, but it had to be reverted in commit 69da6ba because it was broken in CI builds. Azure Pipelines and Drone perform shallow clones by default. This change reconfigures them to fetch history and tags. It adds tens of seconds, which is negligible compared to overall build and test time. Related: #6466, #6509, #7601 | |||
| 2020-12-31 | ci: freebsd: use py37-s3cmd | Luna | |
| 2020-12-26 | ci: put Drone CI back to normal | Andrew Kelley | |
| Surely this time all the problems have been fixed | |||
| 2020-12-25 | ci: build in Debug mode to help find the deadlock | Andrew Kelley | |
| 2020-12-20 | add an option to compile zig in single-threaded mode | Andrew Kelley | |
| And enable it for Drone CI. I hate to do this, but I need to make progress on other fronts. | |||
| 2020-12-09 | ci linux: bump qemu-5.2.0 | Michael Dusan | |
| 2020-12-04 | ci: Use eval to make retry() work for pipelines too | LemonBoy | |
| 2020-12-04 | ci: Use -nv flag for wget | LemonBoy | |
| -nv, --no-verbose turn off verboseness, without being quiet | |||
| 2020-12-04 | ci: Prevent some more CI failures | LemonBoy | |
| Many times the CI pipeline fails in the early stages because the APT repo for LLVM is being updated. Add a retry mechanism for some more APT commands. | |||
| 2020-12-02 | ci: Retry apt-get install at most three times | LemonBoy | |
| Try harder instead of failing after the first invocation fails. | |||
| 2020-11-15 | Azure Pipelines CI: update msys2 to the current version | Frank Denis | |
| 2020-11-04 | Update wasmtime to version 0.20 | Frank Denis | |
| The version we were using in CI is now getting quite old, and we want to make sure that the code we produce is compatible with current versions of Wasmtime. | |||
| 2020-10-28 | ci: freebsd: skip non-native tests to save time | Andrew Kelley | |
| 2020-10-28 | ci: macos: rebuild zig1.o with stage1 | Andrew Kelley | |
| see #6830 for details. | |||
| 2020-10-26 | ci: still build zig even though we are using (older) zig cc | Andrew Kelley | |
| 2020-10-25 | ci: skip compile error tests on freebsd to save time | Andrew Kelley | |
| 2020-10-22 | ci: fix regression from not building docs | Andrew Kelley | |
| 0e4f7a8e3f94f0e799280d7e7836d67d776cbca6 forgot to build the docs, causing CI failures | |||
