mirror of
https://github.com/jakeswenson/BitBetter.git
synced 2025-07-13 06:53:25 +00:00
The Docker Executor can't mount volume. https://support.circleci.com/hc/en-us/articles/360007324514 https://circleci.com/docs/2.0/executor-types/#using-machine
16 lines
307 B
YAML
16 lines
307 B
YAML
version: 2
|
|
jobs:
|
|
build:
|
|
machine: true
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: Print the Current Time
|
|
command: date
|
|
- run:
|
|
name: Generate Keys
|
|
command: ./.keys/generate-keys.sh
|
|
- run:
|
|
name: Build script
|
|
command: ./build.sh
|