-
Notifications
You must be signed in to change notification settings - Fork 784
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add automated docker build for merge-f2f branch (#2654)
- Loading branch information
1 parent
c0d8899
commit 007f702
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: docker merge f2f | ||
|
||
on: | ||
push: | ||
branches: | ||
- merge-f2f | ||
|
||
env: | ||
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | ||
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | ||
IMAGE_NAME: ${{ github.repository_owner}}/lighthouse | ||
LCLI_IMAGE_NAME: ${{ github.repository_owner }}/lcli | ||
BRANCH_NAME: merge-f2f | ||
|
||
jobs: | ||
build-docker-amd64: | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Update Rust | ||
run: rustup update stable | ||
- name: Dockerhub login | ||
run: | | ||
echo "${DOCKER_PASSWORD}" | docker login --username ${DOCKER_USERNAME} --password-stdin | ||
- name: Build AMD64 dockerfile (with push) | ||
run: | | ||
docker build \ | ||
--build-arg PORTABLE=true \ | ||
--tag ${IMAGE_NAME}:${BRANCH_NAME} \ | ||
--file ./Dockerfile . | ||
docker push ${IMAGE_NAME}:${BRANCH_NAME} | ||
build-docker-lcli: | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Dockerhub login | ||
run: | | ||
echo "${DOCKER_PASSWORD}" | docker login --username ${DOCKER_USERNAME} --password-stdin | ||
- name: Build lcli dockerfile (with push) | ||
run: | | ||
docker build \ | ||
--build-arg PORTABLE=true \ | ||
--tag ${LCLI_IMAGE_NAME}:${BRANCH_NAME} \ | ||
--file ./lcli/Dockerfile . | ||
docker push ${LCLI_IMAGE_NAME}:${BRANCH_NAME} |