Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/famicom-dumper-client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-10-15 00:51:10 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-10-15 00:51:10 +0300
commita8d3bd46695104affb2cadb3888db5870815f524 (patch)
tree3186f0d933c68550cb652567019688f5c6f78ce0 /.github
parent6d4eef38723b4a8066cfec970d32df5aea8ccb61 (diff)
Migrated to .NET 6.0
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build-test.yml8
-rw-r--r--.github/workflows/release.yml2
2 files changed, 3 insertions, 7 deletions
diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
index 10bb252..4d27a74 100644
--- a/.github/workflows/build-test.yml
+++ b/.github/workflows/build-test.yml
@@ -11,7 +11,7 @@ jobs:
build:
strategy:
matrix:
- host: [windows-latest, ubuntu-latest, macos-latest]
+ host: [ubuntu-latest]
os: [win, linux, osx]
arch: [x86, x64, arm, arm64]
sc: [no-self-contained, self-contained]
@@ -37,7 +37,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
- dotnet-version: 5.0.x
+ dotnet-version: 6.0.x
- name: Build
env:
SC_OPS: ${{ matrix.sc == 'self-contained' && '--self-contained true -p:PublishTrimmed=True' || '--no-self-contained' }}
@@ -52,10 +52,6 @@ jobs:
./famicom-dumper --help
./famicom-dumper list-mappers
- name: Upload artifact
- if: |
- (matrix.host == 'ubuntu-latest' && matrix.os == 'linux')
- || (matrix.host == 'macos-latest' && matrix.os == 'osx')
- || (matrix.host == 'windows-latest' && matrix.os == 'win')
uses: actions/upload-artifact@v2
with:
name: ${{ env.OUTPUT_SUBDIR }}
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 6dc6aac..b173151 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -55,7 +55,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
- dotnet-version: 5.0.x
+ dotnet-version: 6.0.x
- name: Build
env:
SC_OPS: ${{ matrix.sc == 'self-contained' && '--self-contained true -p:PublishTrimmed=True' || '--no-self-contained' }}