From 02386c16aa30b7928666553d5f28c0e38f8171f6 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 19 Oct 2023 07:00:23 -0700 Subject: [PATCH 1/3] setup multi-arch docker images --- .github/workflows/release.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3810ab8d1..23ddd9bba 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,8 +29,12 @@ jobs: TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} run: | python setup.py sdist bdist_wheel - twine upload dist/* + #twine upload dist/* + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 - name: Login to DockerHub uses: docker/login-action@v3 with: @@ -42,6 +46,7 @@ jobs: with: context: . file: ./docker/Dockerfile + platforms: linux/amd64,linux/arm64 push: true tags: | ${{ secrets.DOCKERHUB_USERNAME }}/aider:${{ github.ref_name }} From 25c06940d6bd4fc5bf71cbe0bbec0ab34544dad7 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 19 Oct 2023 07:09:09 -0700 Subject: [PATCH 2/3] re-enable twine/pypi --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 23ddd9bba..c8d73a6f9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,7 +29,7 @@ jobs: TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} run: | python setup.py sdist bdist_wheel - #twine upload dist/* + twine upload dist/* - name: Set up QEMU uses: docker/setup-qemu-action@v3 From 54742a2d7519914cb3459c3a0b8983a13ac3a8f8 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 19 Oct 2023 08:01:15 -0700 Subject: [PATCH 3/3] Updated HISTORY --- HISTORY.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index f6b750ec3..f993e82a4 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,11 +1,11 @@ # Release history -### Next release +### main branch - Added support for `.aiderignore` file, which instructs aider to ignore parts of the git repo. - `/run` and `/git` now accept full shell commands, like: `/run (cd subdir; ls)` - New `--commit` cmd line arg, which just commits all pending changes with a sensible commit message geneated by gpt-3.5. -- Added universal ctags to the [aider docker image](https://aider.chat/docs/docker.html) +- Added universal ctags and multiple architectures to the [aider docker image](https://aider.chat/docs/docker.html) ### v0.14.2