-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
92866ba
commit 37c7228
Showing
2 changed files
with
45 additions
and
14 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
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,21 @@ | ||
name: test linux | ||
|
||
stages: | ||
- name: test | ||
jobs: | ||
- name: test | ||
steps: | ||
- name: Install in ubuntu | ||
command: docker build -t zmicro:ubuntu -f config/docker/Dockerfile.ubuntu . | ||
|
||
- name: Install in alpine | ||
command: docker build -t zmicro:alpine -f config/docker/Dockerfile.alpine . | ||
|
||
- name: Install in centos | ||
command: docker build -t zmicro:centos -f config/docker/Dockerfile.centos . | ||
|
||
- name: Install in archlinux | ||
command: docker build -t zmicro:archlinux -f config/docker/Dockerfile.archlinux . | ||
|
||
- name: Install in debian | ||
command: docker build -t zmicro:debian -f config/docker/Dockerfile.debian . |