-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* git: add task to bump version * gh: bump faasm version * gh: bump cpp version * git: remove .env file * docs: update readme * gitmodules: move from ssh to https * gha: add planner * compose: add planner too * compose: don't expose ports as we don't really need too
- Loading branch information
1 parent
b8bb9bb
commit 5998fcc
Showing
7 changed files
with
99 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 +33,7 @@ jobs: | |
if: github.event.pull_request.draft == false | ||
runs-on: ubuntu-latest | ||
container: | ||
image: faasm.azurecr.io/examples-build:0.2.5_0.2.5 | ||
image: faasm.azurecr.io/examples-build:0.2.7_0.2.5 | ||
credentials: | ||
username: ${{ secrets.ACR_SERVICE_PRINCIPAL_ID }} | ||
password: ${{ secrets.ACR_SERVICE_PRINCIPAL_PASSWORD }} | ||
|
@@ -88,28 +88,32 @@ jobs: | |
LOG_LEVEL: info | ||
NETNS_MODE: off | ||
OVERRIDE_CPU_COUNT: 30 | ||
PLANNER_HOST: planner | ||
PLANNER_PORT: 8080 | ||
REDIS_QUEUE_HOST: redis | ||
REDIS_STATE_HOST: redis | ||
WASM_VM: ${{ matrix.wasm_vm }} | ||
container: | ||
image: faasm.azurecr.io/examples-run:0.9.6 | ||
image: faasm.azurecr.io/examples-run:0.9.9 | ||
credentials: | ||
username: ${{ secrets.ACR_SERVICE_PRINCIPAL_ID }} | ||
password: ${{ secrets.ACR_SERVICE_PRINCIPAL_PASSWORD }} | ||
services: | ||
redis: | ||
image: faasm.azurecr.io/redis:0.9.6 | ||
image: faasm.azurecr.io/redis:0.9.9 | ||
credentials: | ||
username: ${{ secrets.ACR_SERVICE_PRINCIPAL_ID }} | ||
password: ${{ secrets.ACR_SERVICE_PRINCIPAL_PASSWORD }} | ||
minio: | ||
image: faasm.azurecr.io/minio:0.9.6 | ||
image: faasm.azurecr.io/minio:0.9.9 | ||
credentials: | ||
username: ${{ secrets.ACR_SERVICE_PRINCIPAL_ID }} | ||
password: ${{ secrets.ACR_SERVICE_PRINCIPAL_PASSWORD }} | ||
env: | ||
MINIO_ROOT_USER: minio | ||
MINIO_ROOT_PASSWORD: minio123 | ||
planner: | ||
image: faasm.azurecr.io/planner:0.4.4 | ||
steps: | ||
- name: "Download examples wasm" | ||
uses: actions/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.9.6 | ||
0.9.9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule cpp
updated
32 files
+2 −2 | .env | |
+1 −1 | .github/workflows/tests.yml | |
+1 −1 | VERSION | |
+1 −0 | func/demo/CMakeLists.txt | |
+18 −13 | func/demo/chain_output.cpp | |
+4 −5 | func/demo/dummy.cpp | |
+2 −3 | func/demo/echo.cpp | |
+14 −0 | func/demo/exception.cpp | |
+1 −3 | func/demo/fibonacci.cpp | |
+1 −2 | func/demo/getdents.cpp | |
+1 −1 | func/demo/hello.cpp | |
+3 −3 | func/demo/mmap.cpp | |
+6 −4 | func/demo/state_async.cpp | |
+9 −1 | func/demo/state_offset.cpp | |
+7 −1 | func/demo/state_shared_read.cpp | |
+6 −2 | func/demo/state_shared_read_offset.cpp | |
+6 −2 | func/demo/state_shared_write.cpp | |
+7 −1 | func/demo/state_shared_write_offset.cpp | |
+1 −2 | func/demo/string.cpp | |
+1 −2 | func/demo/time.cpp | |
+1 −2 | func/demo/time_of_day.cpp | |
+3 −1 | func/demo/x2.cpp | |
+2 −0 | func/mpi/migrate.cpp | |
+1 −0 | libfaasm/CMakeLists.txt | |
+4 −4 | libfaasm/core.cpp | |
+2 −0 | libfaasm/faasm.imports | |
+4 −4 | libfaasm/faasm/core.h | |
+6 −3 | libfaasm/faasm/host_interface.h | |
+14 −0 | libfaasm/faasm/host_interface_test.h | |
+1 −2 | libfaasm/input.cpp | |
+3 −2 | libfaasm/random.cpp | |
+4 −1 | tasks/func.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters