Skip to content

test with standard 7.0 #74

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

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ env:

jobs:
test:
runs-on: ubuntu-20.04
runs-on: codebuild-soci-github-ci-pipeline-${{ github.run_id }}-${{ github.run_attempt }}-ubuntu-7.0-xlarge
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
Expand All @@ -34,7 +34,7 @@ jobs:
- run: make
- run: make test
integration:
runs-on: ubuntu-20.04
runs-on: codebuild-soci-github-ci-pipeline-${{ github.run_id }}-${{ github.run_attempt }}-ubuntu-7.0-xlarge
timeout-minutes: 40
strategy:
fail-fast: false
Expand All @@ -47,4 +47,5 @@ jobs:
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- run: goenv global 1.22.1
- run: make integration
2 changes: 1 addition & 1 deletion integration/pull_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ func TestLazyPullWithSparseIndex(t *testing.T) {
}

func checkFuseMounts(t *testing.T, sh *shell.Shell, remoteSnapshotsExpectedCount int) {
mounts := string(sh.O("mount"))
mounts := string(sh.O("cat", "/proc/mounts"))
remoteSnapshotsActualCount := strings.Count(mounts, "fuse.rawBridge")
if remoteSnapshotsExpectedCount != remoteSnapshotsActualCount {
t.Fatalf("incorrect number of remote snapshots; expected=%d, actual=%d",
Expand Down