From eb44d405f8c6c7d090a12e0f359b0f2892133225 Mon Sep 17 00:00:00 2001 From: Carlos Segarra Date: Tue, 17 Jan 2023 17:06:45 +0000 Subject: [PATCH 1/3] dulwhich not building --- crossenv/tasks/modules.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crossenv/tasks/modules.py b/crossenv/tasks/modules.py index 9f640a8..1e3ae21 100644 --- a/crossenv/tasks/modules.py +++ b/crossenv/tasks/modules.py @@ -51,7 +51,8 @@ # Libs that can be installed directly from PyPI PYPI_LIBS = [ - "dulwich", + # 17/01/2023 - dulwhich package installation is broken + # "dulwich", "Genshi", "pyaes", "pyperf", From 81eb4690ef48c7decd9c369b8ef0278b6ec8a7d7 Mon Sep 17 00:00:00 2001 From: Carlos Segarra Date: Tue, 17 Jan 2023 17:07:17 +0000 Subject: [PATCH 2/3] gh: bump version --- .github/workflows/tests.yml | 4 ++-- VERSION | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 56b328d..157b11a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -20,7 +20,7 @@ jobs: if: github.event.pull_request.draft == false runs-on: ubuntu-20.04 container: - image: faasm/cpython:0.2.0 + image: faasm/cpython:0.2.1 steps: - name: "Fetch code" uses: actions/checkout@v3 @@ -41,7 +41,7 @@ jobs: REDIS_QUEUE_HOST: redis REDIS_STATE_HOST: redis container: - image: faasm/cpython:0.2.0 + image: faasm/cpython:0.2.1 services: redis: image: redis diff --git a/VERSION b/VERSION index 0ea3a94..0c62199 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.2.0 +0.2.1 From dfaa27bca08b9f4b673e6959f5a7e81bd7e5ee5a Mon Sep 17 00:00:00 2001 From: Carlos Segarra Date: Tue, 17 Jan 2023 17:17:24 +0000 Subject: [PATCH 3/3] gha: bump versions in release workflow file --- .github/workflows/release.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cbcb6ca..8106c87 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,25 +10,25 @@ jobs: runs-on: ubuntu-latest steps: - name: "Get the code" - uses: actions/checkout@v2 - - name: "Submodules" - run: "git submodule update --init --recursive" + uses: actions/checkout@v3 + with: + submodules: recursive - name: "Get tag version" run: echo "TAG_VERSION=${GITHUB_REF#refs/tags/v*}" >> $GITHUB_ENV - name: "Print tag version" run: echo ${{ env.TAG_VERSION }} - name: "Set up QEMU" - uses: docker/setup-qemu-action@v1 + uses: docker/setup-qemu-action@v2 - name: "Set up Docker Buildx" - uses: docker/setup-buildx-action@v1 + uses: docker/setup-buildx-action@v2 - name: "Log in to DockerHub" - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - name: "Build and push cpython container" id: docker_build - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v3 with: push: true context: .