File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 24
24
25
25
jobs :
26
26
test :
27
- runs-on : ubuntu-20.04
27
+ runs-on : codebuild-soci-github-ci-pipeline-${{ github.run_id }}-${{ github.run_attempt }}- ubuntu-7.0-xlarge
28
28
timeout-minutes : 15
29
29
steps :
30
30
- uses : actions/checkout@v4
34
34
- run : make
35
35
- run : make test
36
36
integration :
37
- runs-on : ubuntu-20.04
37
+ runs-on : codebuild-soci-github-ci-pipeline-${{ github.run_id }}-${{ github.run_attempt }}- ubuntu-7.0-xlarge
38
38
timeout-minutes : 40
39
39
strategy :
40
40
fail-fast : false
47
47
- uses : actions/setup-go@v5
48
48
with :
49
49
go-version : ${{ env.GO_VERSION }}
50
+ # - run: goenv global 1.22.1
50
51
- run : make integration
Original file line number Diff line number Diff line change @@ -236,7 +236,7 @@ func TestLazyPullWithSparseIndex(t *testing.T) {
236
236
}
237
237
238
238
func checkFuseMounts (t * testing.T , sh * shell.Shell , remoteSnapshotsExpectedCount int ) {
239
- mounts := string (sh .O ("mount " ))
239
+ mounts := string (sh .O ("cat" , "/proc/mounts " ))
240
240
remoteSnapshotsActualCount := strings .Count (mounts , "fuse.rawBridge" )
241
241
if remoteSnapshotsExpectedCount != remoteSnapshotsActualCount {
242
242
t .Fatalf ("incorrect number of remote snapshots; expected=%d, actual=%d" ,
You can’t perform that action at this time.
0 commit comments