Compare commits
No commits in common. "48622606082a333602f4977b2b6e7fe4327b3cea" and "a906a96c94dacc8ef841fc48061515574487c69a" have entirely different histories.
4862260608
...
a906a96c94
4 changed files with 9 additions and 42 deletions
|
|
@ -37,23 +37,17 @@ jobs:
|
||||||
|
|
||||||
build:
|
build:
|
||||||
|
|
||||||
runs-on: docker
|
runs-on: debian-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Clone yavsc
|
- uses: actions/checkout@v6
|
||||||
run: |
|
- name: Setup .NET
|
||||||
cd /src
|
uses: actions/setup-dotnet@v5
|
||||||
git clone https://forgejo.pschneider.fr/notazof/yavsc.git _src
|
with:
|
||||||
cd _src
|
dotnet-version: 10.0.x
|
||||||
if [ -n "${GITHUB_REF:-}" ]; then
|
|
||||||
git fetch origin "$GITHUB_REF"
|
|
||||||
git checkout FETCH_HEAD
|
|
||||||
fi
|
|
||||||
git submodule update --init --recursive
|
|
||||||
echo "Checked out at $(git rev-parse HEAD) on $(git branch --show-current 2>/dev/null || echo detached HEAD)"
|
|
||||||
- name: Restore dependencies
|
- name: Restore dependencies
|
||||||
run: cd /src/_src && dotnet restore
|
run: dotnet restore
|
||||||
- name: Build
|
- name: Build
|
||||||
run: cd /src/_src && dotnet build --no-restore
|
run: dotnet build --no-restore
|
||||||
- name: Test
|
- name: Test
|
||||||
run: cd /src/_src && dotnet test --no-build --verbosity normal
|
run: dotnet test --no-build --verbosity normal
|
||||||
|
|
|
||||||
3
.gitmodules
vendored
3
.gitmodules
vendored
|
|
@ -1,3 +0,0 @@
|
||||||
[submodule "external/dotnet-android-build-image"]
|
|
||||||
path = external/dotnet-android-build-image
|
|
||||||
url = https://forgejo.pschneider.fr/notazof/dotnet-android-build-image.git
|
|
||||||
23
NuGet.config
23
NuGet.config
|
|
@ -1,23 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--
|
|
||||||
Project-level NuGet configuration.
|
|
||||||
|
|
||||||
The yavsc solution depends on HigginsSoft.IdentityServer8.* 8.1.0-alpha.*,
|
|
||||||
published only on the internal feed https://isn.pschneider.fr. The public
|
|
||||||
nuget.org feed has 8.0.4 as the nearest version, which causes NU1102 on
|
|
||||||
restore for every project that depends on it (Yavsc.Org, Yavsc.Api,
|
|
||||||
Yavsc.Blogs, Yavsc.Server, cli, tests).
|
|
||||||
|
|
||||||
Listing 'isn' before 'nuget.org' here ensures that restore finds the
|
|
||||||
alpha packages first, then falls back to nuget.org for everything else.
|
|
||||||
Both feeds are reachable anonymously; no credentials are stored here.
|
|
||||||
|
|
||||||
See AGENTS.md for the rationale.
|
|
||||||
-->
|
|
||||||
<configuration>
|
|
||||||
<packageSources>
|
|
||||||
<clear />
|
|
||||||
<add key="isn" value="https://isn.pschneider.fr/api/v3/index.json" />
|
|
||||||
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
|
|
||||||
</packageSources>
|
|
||||||
</configuration>
|
|
||||||
1
external/dotnet-android-build-image
vendored
1
external/dotnet-android-build-image
vendored
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit 0695a6c1fea6508f1a88f7ad0ad9cb93733aa52d
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue