Skip to content

Commit cd385fe

Browse files
authored
Fix docker build (#22)
* dulwhich not building * gh: bump version * gha: bump versions in release workflow file
1 parent 78fd86d commit cd385fe

File tree

4 files changed

+12
-11
lines changed

4 files changed

+12
-11
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,25 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: "Get the code"
13-
uses: actions/checkout@v2
14-
- name: "Submodules"
15-
run: "git submodule update --init --recursive"
13+
uses: actions/checkout@v3
14+
with:
15+
submodules: recursive
1616
- name: "Get tag version"
1717
run: echo "TAG_VERSION=${GITHUB_REF#refs/tags/v*}" >> $GITHUB_ENV
1818
- name: "Print tag version"
1919
run: echo ${{ env.TAG_VERSION }}
2020
- name: "Set up QEMU"
21-
uses: docker/setup-qemu-action@v1
21+
uses: docker/setup-qemu-action@v2
2222
- name: "Set up Docker Buildx"
23-
uses: docker/setup-buildx-action@v1
23+
uses: docker/setup-buildx-action@v2
2424
- name: "Log in to DockerHub"
25-
uses: docker/login-action@v1
25+
uses: docker/login-action@v2
2626
with:
2727
username: ${{ secrets.DOCKER_USERNAME }}
2828
password: ${{ secrets.DOCKER_PASSWORD }}
2929
- name: "Build and push cpython container"
3030
id: docker_build
31-
uses: docker/build-push-action@v2
31+
uses: docker/build-push-action@v3
3232
with:
3333
push: true
3434
context: .

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
if: github.event.pull_request.draft == false
2121
runs-on: ubuntu-20.04
2222
container:
23-
image: faasm/cpython:0.2.0
23+
image: faasm/cpython:0.2.1
2424
steps:
2525
- name: "Fetch code"
2626
uses: actions/checkout@v3
@@ -41,7 +41,7 @@ jobs:
4141
REDIS_QUEUE_HOST: redis
4242
REDIS_STATE_HOST: redis
4343
container:
44-
image: faasm/cpython:0.2.0
44+
image: faasm/cpython:0.2.1
4545
services:
4646
redis:
4747
image: redis

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.0
1+
0.2.1

crossenv/tasks/modules.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@
5151

5252
# Libs that can be installed directly from PyPI
5353
PYPI_LIBS = [
54-
"dulwich",
54+
# 17/01/2023 - dulwhich package installation is broken
55+
# "dulwich",
5556
"Genshi",
5657
"pyaes",
5758
"pyperf",

0 commit comments

Comments
 (0)