-
Notifications
You must be signed in to change notification settings - Fork 7
84 lines (69 loc) · 2.38 KB
/
ci-build.yml
File metadata and controls
84 lines (69 loc) · 2.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: CI Build App
on:
workflow_dispatch:
push:
branches: [main]
paths:
- "cmd/**"
- "web/**"
- ".github/workflows/**"
pull_request:
branches: [main]
permissions:
contents: read
packages: write
env:
VERSION: 0.8.6
BUILD_INFO: "Build:development / Workflow:${{ github.workflow }} / RunId:${{ github.run_id }} / Ref:${{ github.ref }} / SHA:${{ github.sha }} / ImageTag:${{ github.run_id }}"
IMAGE_REG: ghcr.io
IMAGE_TAG: ${{ github.run_id }}
jobs:
# ===== Testing & code checking ======
tests-linting:
runs-on: ubuntu-latest
outputs:
imageTag: ${{ steps.createTag.outputs.IMAGE_TAG }}
steps:
- name: "Checkout source"
uses: actions/checkout@v4
- name: "Set Go version and paths"
uses: actions/setup-go@v5
with:
go-version: "^1.24.0"
- name: "Dapr tool installer"
uses: dapr/setup-dapr@v1
- name: "Run integration tests"
run: |
make run &
sleep 30
make test-api
# - name: "Install extra tools"
# run: |
# curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin
# - name: "Check code & lint"
# run: |
# go get ./...
# make lint
# - name: "Run all unit tests"
# run: make test
# ===== Build container images ======
# build-images:
# runs-on: ubuntu-latest
# needs: tests-linting
# strategy:
# matrix:
# serviceName: [cart, orders, users, products, frontend]
# steps:
# - name: "Checkout source"
# uses: actions/checkout@v3
# - name: "Run build"
# run: |
# make docker-build-${{ matrix.serviceName }} IMAGE_TAG=$IMAGE_TAG VERSION=$VERSION BUILD_INFO="$BUILD_INFO"
# make docker-build-${{ matrix.serviceName }} IMAGE_TAG=latest VERSION=$VERSION BUILD_INFO="$BUILD_INFO"
# # Steps after this are only run when merging or pushing into main
# - name: "Push to container registry"
# if: github.event_name == 'push' && github.ref == 'refs/heads/main'
# run: |
# echo ${{ secrets.GITHUB_TOKEN }} | docker login $IMAGE_REG -u $GITHUB_ACTOR --password-stdin
# make docker-push-${{ matrix.serviceName }} IMAGE_TAG=$IMAGE_TAG
# make docker-push-${{ matrix.serviceName }} IMAGE_TAG=latest