{"id":20132534,"url":"https://github.com/aherrmann/2023-build-meetup","last_synced_at":"2025-08-09T19:11:01.518Z","repository":{"id":240828804,"uuid":"705249823","full_name":"aherrmann/2023-build-meetup","owner":"aherrmann","description":"Code examples for the Buck2/Bazel talk at Build Meetup 2023 in Reykjavik","archived":false,"fork":false,"pushed_at":"2023-10-17T11:42:14.000Z","size":829434,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-11-13T20:54:24.423Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aherrmann.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"open_collective":"bazel-rules-authors-sig"}},"created_at":"2023-10-15T13:42:48.000Z","updated_at":"2024-08-02T16:19:38.000Z","dependencies_parsed_at":"2024-05-21T02:43:34.749Z","dependency_job_id":null,"html_url":"https://github.com/aherrmann/2023-build-meetup","commit_stats":null,"previous_names":["aherrmann/2023-build-meetup"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aherrmann%2F2023-build-meetup","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aherrmann%2F2023-build-meetup/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aherrmann%2F2023-build-meetup/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aherrmann%2F2023-build-meetup/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aherrmann","download_url":"https://codeload.github.com/aherrmann/2023-build-meetup/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":233717452,"owners_count":18718997,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-13T20:53:56.144Z","updated_at":"2025-01-13T09:10:19.487Z","avatar_url":"https://github.com/aherrmann.png","language":"Python","funding_links":["https://opencollective.com/bazel-rules-authors-sig"],"categories":[],"sub_categories":[],"readme":"This repository houses the example code to the talk \"[Comparing Buck2 and\nBazel][slides]\" at [Build Meetup 2023][build-meetup]. These examples assume\nthat you are running on a Linux x86_64 platform with all requirements\ninstalled (build-essential, clang, rustup/cargo, ghcup/ghc, zstd, bazel, buck2,\nand all [rules_haskell dependencies][rules_haskell-deps]).\n\nThe code for each section is held in its own branch:\n- [01-bazel-get-started]\n- [01-buck2-get-started]\n- [02-bazel-minimal]\n- [02-buck2-minimal]\n- [03-bazel-basic]\n- [03-buck2-basic]\n- [04-bazel-isolation]\n- [04-buck2-isolation]\n- [05-buck2-rbe]\n- [05-bazel-rbe]\n- [06-bazel-incremental]\n- [06-buck2-incremental]\n\nEach branch includes a `test.sh` script listing the relevant commands to test\nthe example.\n\nAdditionally the branch [00-bazel-worker] holds a patched version of the Bazel\ncode base that includes a remote worker compatible with Buck2 for testing. The\nbranch includes a script `remote-worker.sh` that builds and starts the remote\nworker.\n\nYou can use the included `setup.py` to checkout all the branches into git\nworktrees and optionally install a distrobox with all requirements installed,\nassuming that you have [distrobox] installed.\n\n[slides]: https://docs.google.com/presentation/d/1Riz78osRw6Ut3iLUuozqSImHq7sh3vJcHJgOq-vNFY0/edit?usp=sharing\n[build-meetup]: https://www.engflow.com/buildCommunityEvents\n[rules_haskell-deps]: https://rules-haskell.readthedocs.io/en/latest/haskell.html#before-you-begin\n[distrobox]: https://github.com/89luca89/distrobox\n\n[00-bazel-worker]: https://github.com/aherrmann/2023-build-meetup/tree/00-bazel-worker\n[01-bazel-get-started]: https://github.com/aherrmann/2023-build-meetup/tree/01-bazel-get-started\n[01-buck2-get-started]: https://github.com/aherrmann/2023-build-meetup/tree/01-buck2-get-started\n[02-bazel-minimal]: https://github.com/aherrmann/2023-build-meetup/tree/02-bazel-minimal\n[02-buck2-minimal]: https://github.com/aherrmann/2023-build-meetup/tree/02-buck2-minimal\n[03-bazel-basic]: https://github.com/aherrmann/2023-build-meetup/tree/03-bazel-basic\n[03-buck2-basic]: https://github.com/aherrmann/2023-build-meetup/tree/03-buck2-basic\n[04-bazel-isolation]: https://github.com/aherrmann/2023-build-meetup/tree/04-bazel-isolation\n[04-buck2-isolation]: https://github.com/aherrmann/2023-build-meetup/tree/04-buck2-isolation\n[05-buck2-rbe]: https://github.com/aherrmann/2023-build-meetup/tree/05-buck2-rbe\n[05-bazel-rbe]: https://github.com/aherrmann/2023-build-meetup/tree/05-bazel-rbe\n[06-bazel-incremental]: https://github.com/aherrmann/2023-build-meetup/tree/06-bazel-incremental\n[06-buck2-incremental]: https://github.com/aherrmann/2023-build-meetup/tree/06-buck2-incremental\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faherrmann%2F2023-build-meetup","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faherrmann%2F2023-build-meetup","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faherrmann%2F2023-build-meetup/lists"}