reexec: improve test-coverage, and use blackbox testing #746
Workflow file for this run
This file contains hidden or 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
| name: Test | |
| # Default to 'contents: read', which grants actions to read commits. | |
| # | |
| # If any permission is set, any permission not included in the list is | |
| # implicitly set to "none". | |
| # | |
| # see https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| go-version: [1.18.x, oldstable, stable] | |
| platform: [ubuntu-22.04, ubuntu-24.04, windows-2022, windows-2025, macos-15, macos-26] | |
| runs-on: ${{ matrix.platform }} | |
| timeout-minutes: 10 # guardrails timeout for the whole job | |
| defaults: | |
| run: | |
| shell: bash | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Install Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| # Disable caching as we don't have top-level go.sum needed for | |
| # the cache key, and specifying multiple go.sums is not trivial | |
| # (see https://github.com/moby/sys/pull/160 for details). | |
| cache: false | |
| - name: Install golangci-lint | |
| uses: golangci/golangci-lint-action@v9 | |
| with: | |
| version: v2.10 | |
| # We don't need to run golangci-lint here yet, but | |
| # there's no way to avoid it, so run it on one module. | |
| working-directory: ./mountinfo | |
| - name: Set PACKAGES env | |
| if: ${{ matrix.go-version == '1.18.x' }} | |
| run: | | |
| # Check if the module supports this version of Go. | |
| go_version="$(go env GOVERSION)" | |
| go_version="${go_version#go}" | |
| packages="" | |
| for p in */; do | |
| [ -f "$p/go.mod" ] || continue | |
| if ! (cd "$p" && go list -m -f "{{if gt .GoVersion \"$go_version\"}}ko{{end}}" | grep -q ko); then | |
| packages+="${p%/} " | |
| else | |
| echo "::notice::SKIP: github.com/moby/sys/${p%/} requires a more recent version of Go" | |
| fi | |
| done | |
| echo "PACKAGES=${packages}" >> "$GITHUB_ENV" | |
| - name: go mod tidy | |
| run: | | |
| make foreach CMD="go mod tidy" | |
| git diff --exit-code | |
| - name: go fix | |
| run: | | |
| make foreach CMD="go fix" | |
| git diff --exit-code | |
| - name: Lint | |
| run: make lint | |
| - name: Cross build | |
| if: ${{ runner.os == 'Linux' }} | |
| run: make cross | |
| - name: Test | |
| run: | | |
| uname -a | |
| make test | |
| - name: Send to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} # used to upload coverage reports: https://github.com/moby/buildkit/pull/4660#issue-2142122533 | |
| codespell: | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 10 # guardrails timeout for the whole job | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: pip install --break-system-packages codespell==v2.3.0 | |
| - run: codespell |