Skip to content

Instantly share code, notes, and snippets.

View lokst's full-sized avatar

Stella Lok lokst

View GitHub Profile
@lokst
lokst / config.yml
Last active April 18, 2019 13:21
Sample steps to manually update Xcode to latest 10.2 version (not necessary once the Xcode 10.2 GA version image has been released on CircleCI)
version: 2
jobs:
build:
macos:
xcode: "10.2.0"
steps:
- run:
name: Update Xcode to latest 10.2 version
command: |
# Requires setting the XCODE_INSTALL_USER and XCODE_INSTALL_PASSWORD
@lokst
lokst / delete-all-vpcs-in-region.sh
Created April 4, 2019 17:17 — forked from RichardBronosky/delete-all-vpcs-in-region.sh
Delete AWS VPC including dependencies
#!/bin/bash -eu
#
# List all VPCs in region and delete them
main(){
if [ -z "$1" ]; then
echo "Usage: $0 <region> [<region> ...]"
exit 64
fi
version: 2
jobs:
build:
docker:
- image: circleci/node:latest
steps:
- run:
command: echo "🚫"
- run:
command: echo "🎉"