Skip to content

Commit

Permalink
versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mattleibow committed Aug 21, 2024
1 parent 3f8151a commit c63a971
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ jobs:
runs-on: ${{ matrix.platform.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup Required Tools
uses: ./.github/workflows/setup-tools
- name: Build
run: dotnet build DeviceRunners.sln --configuration ${{ matrix.configuration }} /bl:./artifacts/logs/msbuild-build-${{ matrix.configuration }}.binlog
- name: Upload Logs
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: Logs - ${{ matrix.platform.name }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup Required Tools
uses: ./.github/workflows/setup-tools
- name: Package NuGets
Expand All @@ -30,12 +30,12 @@ jobs:
dotnet pack --output ./artifacts/nugets --configuration Release -p:PackageVersion=$VERSION /bl:./artifacts/logs/msbuild-pack.binlog
- name: Upload NuGet Artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: NuGet
path: ./artifacts/nugets
- name: Upload Logs
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: Pack Logs - Windows
Expand All @@ -55,7 +55,7 @@ jobs:
with:
name: NuGet
- name: Setup .NET
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
source-url: ${{ env.NUGET_URL }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/setup-tools/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ runs:
with:
xcode-version: latest-stable
- name: Setup .NET
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.304
- name: Show .NET Info
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-xharness-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
TEST_EMULATOR_IMAGE: system-images;android-34;google_apis;x86_64
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup Required Tools
uses: ./.github/workflows/setup-tools
- uses: actions/setup-java@v4
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
- name: Shutdown the Emulator
run: dotnet xharness android adb -- emu kill
- name: Upload Artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: Test Results - ${{ matrix.platform.name }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-xharness-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
TEST_CONFIGURATION: Debug
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup Required Tools
uses: ./.github/workflows/setup-tools
- name: Publish App
Expand All @@ -43,7 +43,7 @@ jobs:
done
exit $code
- name: Upload Artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: Test Results
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-xharness-maccatalyst.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
TEST_CONFIGURATION: Debug
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup Required Tools
uses: ./.github/workflows/setup-tools
- name: Publish App
Expand All @@ -38,7 +38,7 @@ jobs:
--app sample/test/DeviceTestingKitApp.DeviceTests/bin/${{ env.TEST_CONFIGURATION }}/${{ env.TEST_TARGET_FRAMEWORK }}/${{ env.TEST_RUNTIME_IDENTIFIER }}/DeviceTestingKitAppDeviceTests.app \
--output-directory artifacts
- name: Upload Artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: Test Results
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-xharness-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
TEST_CONFIGURATION: Release
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup Required Tools
uses: ./.github/workflows/setup-tools
- name: Publish App
Expand All @@ -42,7 +42,7 @@ jobs:
-TestingMode XHarness
shell: powershell
- name: Upload Artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: Test Results
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:
runs-on: ${{ matrix.platform.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup Required Tools
uses: ./.github/workflows/setup-tools
- name: Test
run: dotnet test test/DeviceRunners.VisualRunners.Tests --configuration Release /bl:./artifacts/logs/msbuild-test.binlog
- name: Upload Logs
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: Logs - ${{ matrix.platform.name }}
Expand Down

0 comments on commit c63a971

Please sign in to comment.