We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0de082d commit 12adbc3Copy full SHA for 12adbc3
.github/workflows/build-ramdisk.yml
@@ -19,7 +19,7 @@ jobs:
19
- name: Setup .NET
20
uses: actions/setup-dotnet@v3
21
with:
22
- dotnet-version: 9.0.100-rc.2.24474.11 # Match the SDK version
+ dotnet-version: 9.0.100
23
24
# Step 3: Prepare a directory in /dev/shm
25
- name: Set up Ramdisk Directory
@@ -35,5 +35,5 @@ jobs:
35
- name: Build and Test
36
run: |
37
cd /dev/shm/ramdisk/project
38
- dotnet build --configuration Release
39
- dotnet test --no-build --verbosity normal
+ dotnet build --configuration Debug --output /dev/shm/ramdisk/build
+ dotnet test --no-build /dev/shm/ramdisk/build --verbosity normal
0 commit comments