Skip to content
This repository was archived by the owner on Dec 9, 2024. It is now read-only.

Commit 4a85d1d

Browse files
committed
add build-image workflow
Signed-off-by: mahjonp <[email protected]>
1 parent 940fa6c commit 4a85d1d

File tree

5 files changed

+22
-4
lines changed

5 files changed

+22
-4
lines changed

.github/workflows/build.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: "Build"
2-
on: [push, pull_request]
2+
on: [pull_request]
33

44
jobs:
55
build:

.github/workflows/build_images.yaml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: "Build-image"
2+
on: [pull_request]
3+
4+
jobs:
5+
buildx:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Checkout
9+
uses: actions/checkout@v2
10+
- uses: docker/setup-buildx-action@v1
11+
id: buildx
12+
with:
13+
install: true
14+
- name: Install make
15+
run: sudo apt-get install -y makefile
16+
- name: Build
17+
run: |
18+
make image

.github/workflows/build_workflow.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: "Build-workflow"
2-
on: [push, pull_request]
2+
on: [pull_request]
33

44
jobs:
55
build:

.github/workflows/precheck.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: "Pre-Check"
2-
on: [push, pull_request]
2+
on: [pull_request]
33

44
jobs:
55
pre-check:

.github/workflows/test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: "Test"
2-
on: [push, pull_request]
2+
on: [pull_request]
33

44
jobs:
55
test:

0 commit comments

Comments
 (0)