Skip to content

Commit 6dc2e47

Browse files
committed
use machine
1 parent 164c4f2 commit 6dc2e47

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

.circleci/config.yml

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@ version: 2.1
44

55
jobs:
66
build:
7-
docker:
8-
- image: "cimg/python:3.9-browsers"
9-
auth:
10-
username: duncdrum
11-
password: $DOCKER_TMP_PW
7+
machine:
8+
image: ubuntu-2004:202104-01
9+
# docker:
10+
# - image: "cimg/python:3.9-browsers"
11+
# auth:
12+
# username: duncdrum
13+
# password: $DOCKER_TMP_PW
1214
# - image: "existdb/existdb:latest"
1315
# name: exist-top
1416
# auth:
@@ -19,9 +21,9 @@ jobs:
1921
- run: |
2022
sudo apt-get update
2123
sudo apt-get --yes install libx11-dev libxkbfile-dev
22-
- setup_remote_docker:
23-
version: 20.10.2
24-
docker_layer_caching: false
24+
# - setup_remote_docker:
25+
# version: 20.10.2
26+
# docker_layer_caching: false
2527
- run:
2628
name: install dockerize
2729
command: wget https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSION/dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz && sudo tar -C /usr/local/bin -xzvf dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz && rm dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz
@@ -35,8 +37,9 @@ jobs:
3537
- run:
3638
name: Wait for db
3739
command: dockerize -wait http://localhost:8080 -timeout 1m
38-
- run: docker ps
3940
- run: node --version
41+
- run: python --version
42+
- run: docker ps
4043
- run: yarn
4144
- run:
4245
working_directory: browser-app

0 commit comments

Comments
 (0)