-
Notifications
You must be signed in to change notification settings - Fork 491
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GitHub Actions for test #463
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,90 @@ | ||
name: build | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- 'master' | ||
tags: | ||
- 'v*' | ||
pull_request: | ||
branches: | ||
- 'master' | ||
|
||
env: | ||
REPO_SLUG_ORIGIN: "moby/buildkit:master" | ||
CACHEKEY_BINARIES: "binaries" | ||
|
||
jobs: | ||
base: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- | ||
name: Checkout | ||
uses: actions/checkout@v2 | ||
- | ||
name: Cache ${{ env.CACHEKEY_BINARIES }} | ||
uses: actions/cache@v2 | ||
with: | ||
path: /tmp/.buildx-cache/${{ env.CACHEKEY_BINARIES }} | ||
key: ${{ runner.os }}-buildx-${{ env.CACHEKEY_BINARIES }}-${{ github.sha }} | ||
restore-keys: | | ||
${{ runner.os }}-buildx-${{ env.CACHEKEY_BINARIES }}- | ||
- | ||
name: Set up QEMU | ||
uses: docker/setup-qemu-action@v1 | ||
- | ||
name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v1 | ||
with: | ||
driver-opts: image=${{ env.REPO_SLUG_ORIGIN }} | ||
- | ||
name: Build ${{ env.CACHEKEY_BINARIES }} | ||
run: | | ||
./hack/build_ci_first_pass binaries | ||
env: | ||
CACHEDIR_FROM: /tmp/.buildx-cache/${{ env.CACHEKEY_BINARIES }} | ||
CACHEDIR_TO: /tmp/.buildx-cache/${{ env.CACHEKEY_BINARIES }}-new | ||
- | ||
# FIXME: Temp fix for https://github.com/moby/buildkit/issues/1850 | ||
name: Move cache | ||
run: | | ||
rm -rf /tmp/.buildx-cache/${{ env.CACHEKEY_BINARIES }} | ||
mv /tmp/.buildx-cache/${{ env.CACHEKEY_BINARIES }}-new /tmp/.buildx-cache/${{ env.CACHEKEY_BINARIES }} | ||
test: | ||
runs-on: ubuntu-latest | ||
needs: [base] | ||
steps: | ||
- | ||
name: Checkout | ||
uses: actions/checkout@v2 | ||
- | ||
name: Cache ${{ env.CACHEKEY_BINARIES }} | ||
uses: actions/cache@v2 | ||
with: | ||
path: /tmp/.buildx-cache/${{ env.CACHEKEY_BINARIES }} | ||
key: ${{ runner.os }}-buildx-${{ env.CACHEKEY_BINARIES }}-${{ github.sha }} | ||
restore-keys: | | ||
${{ runner.os }}-buildx-${{ env.CACHEKEY_BINARIES }}- | ||
- | ||
name: Set up QEMU | ||
uses: docker/setup-qemu-action@v1 | ||
- | ||
name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v1 | ||
with: | ||
driver-opts: image=${{ env.REPO_SLUG_ORIGIN }} | ||
- | ||
name: Test | ||
run: | | ||
make test | ||
env: | ||
TEST_COVERAGE: 1 | ||
TESTFLAGS: -v --parallel=6 --timeout=20m | ||
CACHEDIR_FROM: /tmp/.buildkit-cache/${{ env.CACHEKEY_BINARIES }} | ||
- | ||
name: Send to Codecov | ||
uses: codecov/codecov-action@v1 | ||
with: | ||
file: ./coverage/coverage.txt |
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,25 @@ | ||
# Workflow used to make a request to proxy.golang.org to refresh cache on https://pkg.go.dev/github.com/docker/buildx | ||
# when a released of buildx is produced | ||
name: godev | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
|
||
jobs: | ||
update: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- | ||
name: Set up Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.13 | ||
- | ||
name: Call pkg.go.dev | ||
run: | | ||
go get github.com/${GITHUB_REPOSITORY}@${GITHUB_REF#refs/tags/} | ||
env: | ||
GO111MODULE: on | ||
GOPROXY: https://proxy.golang.org |
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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
bin | ||
cross-out | ||
coverage | ||
cross-out |
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 @@ | ||
comment: false | ||
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,38 @@ | ||
#!/usr/bin/env bash | ||
|
||
TYP=$1 | ||
|
||
. $(dirname $0)/util | ||
set -e | ||
|
||
usage() { | ||
echo "usage: ./hack/build_ci_first_pass <binaries>" | ||
exit 1 | ||
} | ||
|
||
if [ -z "$TYP" ]; then | ||
usage | ||
fi | ||
|
||
importCacheFlags="" | ||
exportCacheFlags="" | ||
if [ "$GITHUB_ACTIONS" = "true" ]; then | ||
if [ -n "$cacheRefFrom" ]; then | ||
importCacheFlags="--cache-from=type=local,src=$cacheRefFrom" | ||
fi | ||
if [ -n "$cacheRefTo" ]; then | ||
exportCacheFlags="--cache-to=type=local,dest=$cacheRefTo" | ||
fi | ||
fi | ||
|
||
case $TYP in | ||
"binaries") | ||
buildxCmd build $importCacheFlags $exportCacheFlags \ | ||
--target "binaries" \ | ||
$currentcontext | ||
;; | ||
*) | ||
echo >&2 "Unknown type $TYP" | ||
exit 1 | ||
;; | ||
esac |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
want to make same changes as moby/buildkit#1878 for this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I suspect that the issue on buildkit is related to testing on the windows environment (test-os job). I think we can leave it here and see what happens in the future.