This file contains hidden or 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
#!/bin/sh | |
set -e | |
[ -n "$DEBUG" ] && set -x | |
if [ "$1" = "-h" ]; then | |
printf "usage: %s TOKEN RELEASE_ID\n" "$0" | |
exit 0 | |
fi |
This file contains hidden or 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
root@Bridge2010038041:~# balena network inspect 1835016_bridge_gateway | |
[ | |
{ | |
"Name": "1835016_bridge_gateway", | |
"Id": "18b24e30360d5d6e9c34eee6717d5a176dfc3d7fc1e2ec8edc81ca0e5f1c979f", | |
"Created": "2021-12-16T11:33:52.403689961Z", | |
"Scope": "local", | |
"Driver": "bridge", | |
"EnableIPv6": false, | |
"IPAM": { |
This file contains hidden or 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
# support | |
Host balenadevice bal | |
User <balena-cloud-user-id> | |
Hostname ssh.balena-devices.com | |
LogLevel ERROR | |
StrictHostKeyChecking no | |
UserKnownHostsFile /dev/null | |
RequestTTY force | |
ControlMaster no |
This file contains hidden or 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
export CC := clang | |
CFLAGS ?= -Wall -Werror -Wl,--trace -v | |
ifneq ($(SYSROOT),) | |
CFLAGS += --sysroot $(SYSROOT) | |
endif | |
ifneq (,$(findstring clang,$(CC))) | |
platform := $(shell uname -s)/$(shell uname -m) | |
ifeq ($(platform),Linux/x86_64) |
This file contains hidden or 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
jscmini: CXX := clang++ | |
jscmini: CFLAGS += -stdlib=libc++ -std=c++20 | |
jscmini: CFLAGS += -fexperimental-library | |
jscmini: CFLAGS += $(shell pkg-config --cflags --libs javascriptcoregtk-5.0) | |
jscmini: CFLAGS += -fuse-ld=lld -Wl,--as-needed | |
jscmini: | |
$(CXX) -Wall $(CFLAGS) -o $@ main.cc | |
.PHONY: run |
This file contains hidden or 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
export CIRCLE_TOKEN={apitoken} | |
export START_DATE=2022-12-01T12:00:00Z | |
export END_DATE=2023-03-01T12:00:00Z |
OlderNewer