mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
24 lines
585 B
YAML
24 lines
585 B
YAML
version: 2
|
|
jobs:
|
|
build:
|
|
working_directory: ~/dmd
|
|
docker:
|
|
- image: cimg/base:current-20.04
|
|
parallelism: 1
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
command: ./.circleci/run.sh install-deps
|
|
name: Install dependencies
|
|
- run:
|
|
# needs to be a separate step, s.t. `run.sh` gets updated too
|
|
command: ./.circleci/run.sh setup-repos
|
|
name: Merge with upstream + clone DRuntime & Phobos
|
|
- run:
|
|
command: ./.circleci/run.sh all
|
|
name: Run all
|
|
workflows:
|
|
version: 2
|
|
all:
|
|
jobs:
|
|
- build
|