mirror of
https://github.com/apache/superset.git
synced 2026-04-22 17:45:21 +00:00
build: split hive and presto tests to separate jobs (#10821)
* build: split hive and presto tests to separate jobs * Must install doc dependencies, too
This commit is contained in:
22
.github/workflows/test-docker.yml
vendored
Normal file
22
.github/workflows/test-docker.yml
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
name: Docker
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: build
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Run local registry
|
||||
run: docker run -d -p 5000:5000 registry:2
|
||||
|
||||
- name: Build and push Docker images
|
||||
uses: docker/build-push-action@v1
|
||||
with:
|
||||
dockerfile: Dockerfile-dev
|
||||
registry: localhost:5000
|
||||
repository: temp/workflow
|
||||
tags: foo
|
||||
Reference in New Issue
Block a user