Skip to content

Commit

Permalink
ci: move from circleci to github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Joxit authored and missinglink committed May 28, 2022
1 parent 782676b commit d0dfbd8
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 13 deletions.
12 changes: 0 additions & 12 deletions .circleci/config.yml

This file was deleted.

13 changes: 13 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Continuous Integration
on: push
jobs:
build-docker-images:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build Docker images
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
run: |
curl "https://raw.githubusercontent.com/pelias/ci-tools/master/build-docker-images.sh" | bash -
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ FROM pelias/baseimage as better_sqlite3
# this adds ~400MB to the image, so we build in a
# separate image and only copy the files we need.
RUN apt-get update -y
RUN apt-get install -y clang
RUN apt-get install -y clang python3 make

# copy runtime
COPY --from=runtime /opt/spatial /opt/spatial
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
"@mapbox/polyline": "^1.1.1",
"@turf/buffer": "^5.1.5",
"better-sqlite3": "^7.0.1",
"bindings": "^1.5.0",
"csv-parse": "^4.8.2",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
Expand Down

0 comments on commit d0dfbd8

Please sign in to comment.