Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FAABRIC_VERSION=0.20.0
FAABRIC_CLI_IMAGE=ghcr.io/faasm/faabric:0.20.0
FAABRIC_VERSION=0.21.0
FAABRIC_CLI_IMAGE=ghcr.io/faasm/faabric:0.21.0
COMPOSE_PROJECT_NAME=faabric-dev
CONAN_CACHE_MOUNT_SOURCE=./conan-cache/
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
container:
image: ghcr.io/faasm/faabric:0.20.0
image: ghcr.io/faasm/faabric:0.21.0
env:
DEPLOYMENT_TYPE: gha-ci
steps:
Expand All @@ -34,7 +34,7 @@ jobs:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
container:
image: ghcr.io/faasm/faabric:0.20.0
image: ghcr.io/faasm/faabric:0.21.0
steps:
- name: "Check out code"
uses: actions/checkout@v4
Expand All @@ -45,7 +45,7 @@ jobs:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
container:
image: ghcr.io/faasm/faabric:0.20.0
image: ghcr.io/faasm/faabric:0.21.0
steps:
- name: "Check out code"
uses: actions/checkout@v4
Expand All @@ -65,7 +65,7 @@ jobs:
REDIS_QUEUE_HOST: redis
REDIS_STATE_HOST: redis
container:
image: ghcr.io/faasm/faabric:0.20.0
image: ghcr.io/faasm/faabric:0.21.0
options: --privileged
services:
redis:
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
REDIS_QUEUE_HOST: redis
REDIS_STATE_HOST: redis
container:
image: ghcr.io/faasm/faabric:0.20.0
image: ghcr.io/faasm/faabric:0.21.0
options: --privileged
services:
redis:
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
REDIS_QUEUE_HOST: redis
REDIS_STATE_HOST: redis
container:
image: ghcr.io/faasm/faabric:0.20.0
image: ghcr.io/faasm/faabric:0.21.0
services:
redis:
image: redis
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.20.0
0.21.0
2 changes: 0 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: "3"

services:
redis:
image: redis
Expand Down
2 changes: 1 addition & 1 deletion docker/faabric-base.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:22.04
FROM ubuntu:24.04

# Configure APT repositories
ARG LLVM_VERSION_MAJOR
Expand Down
2 changes: 1 addition & 1 deletion docker/faabric.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/faasm/faabric-base:0.15.0
FROM ghcr.io/faasm/faabric-base:0.21.0
ARG FAABRIC_VERSION

# faabic-base image is not re-built often, so tag may be behind
Expand Down
2 changes: 1 addition & 1 deletion docker/planner.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/faasm/faabric-base:0.15.0
FROM ghcr.io/faasm/faabric-base:0.21.0
ARG FAABRIC_VERSION

# Flag to say we're in a container
Expand Down
1 change: 1 addition & 0 deletions include/faabric/util/bytes.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#pragma once

#include <algorithm>
#include <cstdint>
#include <iomanip>
#include <list>
#include <span>
Expand Down
1 change: 1 addition & 0 deletions include/faabric/util/files.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#pragma once

#include <cstdint>
#include <faabric/util/exception.h>
#include <string>
#include <vector>
Expand Down