Skip to content

Commit 15ae735

Browse files
committed
NCBC-4105: Fix GHA workflow to build and test
Changes ------- Remove --no-restore on build Change name of of ARM ubuntu image Change-Id: I001681703dc3ad15840c130b132012445b2f1575 Reviewed-on: https://review.couchbase.org/c/couchbase-net-client/+/237888 Tested-by: Emilien Bevierre <emilien.bevierre@couchbase.com> Reviewed-by: Emilien Bevierre <emilien.bevierre@couchbase.com>
1 parent ba952af commit 15ae735

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/build-and-test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
os: [ubuntu-24.04, ubuntu-24.04-arm64, windows-latest, macos-latest]
18+
os: [ubuntu-24.04, ubuntu-24.04-arm, windows-latest, macos-latest]
1919
env:
2020
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
2121
DOTNET_NOLOGO: 1
@@ -35,7 +35,7 @@ jobs:
3535
run: dotnet restore couchbase-net-client.sln
3636

3737
- name: Build (Release)
38-
run: dotnet build couchbase-net-client.sln --configuration Release --no-restore
38+
run: dotnet build couchbase-net-client.sln --configuration Release
3939

4040
- name: Test - Couchbase.UnitTests
4141
run: dotnet test tests/Couchbase.UnitTests/Couchbase.UnitTests.csproj --configuration Release --no-build --logger "trx;LogFileName=unit-tests.trx" --results-directory "TestResults"
@@ -46,3 +46,4 @@ jobs:
4646
with:
4747
name: unit-test-results-${{ matrix.os }}
4848
path: TestResults
49+

0 commit comments

Comments
 (0)