performance comparisons of edge compute platforms
edge performance benchmark cloud-provider compute function edge-function compute-at-edge comparison
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

okay i have to type whole letters e n v i r o n m e n t i am big boy now

+9 -6
+1 -1
.tangled/workflows/default.yaml
··· 45 45 - name: "Run service" 46 46 command: "./i.sh bun run app/index.ts" 47 47 - name: "Build fastly" 48 - env: 48 + environment: 49 49 SET_CWD: services/fastly/express-basic 50 50 command: "./i.sh fastly compute deploy"
+8 -5
scripts/pipeline/init.sh
··· 1 1 #!/bin/bash 2 - # no e - https://mywiki.wooledge.org/BashFAQ/105 and no u because we CI baybeee 2 + set -xo pipefail # no e - https://mywiki.wooledge.org/BashFAQ/105 and no u because we CI baybeee 3 3 WORKDIR="/tangled/workspace" 4 4 CMDPREFIX="init.sh:" 5 5 ··· 12 12 13 13 if [[ $CI_DEBUG ]]; then 14 14 echo "$CMDPREFIX running debug commands" 15 + # Hide secrets 16 + unset FASTLY_API_KEY 17 + export FASTLY_API_KEY="" 15 18 bar "Environment" "$(printenv)" 16 19 bar "Shell" "$(/bin/sh --version)" 17 20 bar "UName" "$(uname -a)" 18 21 fi 19 22 20 - NOW=$(printf -v date '%(%Y-%m-%d %H:%M:%S)T\n' -1) 21 - echo "$CMDPREFIX step started at $NOW" 23 + # NOW=$(printf -v date '%(%Y-%m-%d %H:%M:%S)T\n' -1) 24 + # echo "$CMDPREFIX step started at $NOW" 22 25 23 26 bash -lc "$*" 24 27 25 - NOW=$(printf -v date '%(%Y-%m-%d %H:%M:%S)T\n' -1) 26 - echo "$CMDPREFIX step finished at $NOW" 28 + # NOW=$(printf -v date '%(%Y-%m-%d %H:%M:%S)T\n' -1) 29 + # echo "$CMDPREFIX step finished at $NOW"