keon94 commented on code in PR #4724:
URL:
https://github.com/apache/incubator-devlake/pull/4724#discussion_r1147875093
##########
.github/workflows/test-e2e.yml:
##########
@@ -42,27 +42,33 @@ jobs:
MYSQL_ROOT_PASSWORD: root
container: mericodev/lake-builder:latest
steps:
- - uses: actions/checkout@v3
+ - name: Checkout code
+ uses: actions/checkout@v3
+ - run: git config --global --add safe.directory $(pwd)
+ - name: Build Sources
+ run: |
+ cd backend
+ make build
- name: Cache test-e2e
id: cache-test-e2e
uses: actions/cache@v3
with:
path: |
~/.cache/go-build
- ~/go/pkg/mod
+ ${{ env.GOPATH }}/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- - name: Test
+ - name: Test-mysql
Review Comment:
Because Postgres is called Test-pg, so it makes sense to give this a more
descriptive name too to match that pattern.
##########
devops/docker/lake-builder/README.md:
##########
@@ -1,13 +1,19 @@
# lake-builder
-golang builder image for lake, including go1.19.0 gcc10.3.1 g++10.3.1, libgit2
v1.3 based on alpine linux 3.16.
+Golang builder image for DevLake. Used by GitHub workflows.
Review Comment:
It's used in the workflows right now too. It was just missing this
documentation.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]