Compare commits

...

18 Commits

Author SHA1 Message Date
187bf255e7 zad_5
All checks were successful
First CI / build (linux-x64) (push) Successful in 1m15s
First CI / build (win-x64) (push) Successful in 59s
2023-11-21 14:56:37 +01:00
eff61b3f98 dotnet 5
All checks were successful
First CI / build (linux-x64) (push) Successful in 1m15s
First CI / build (win-x64) (push) Successful in 1m0s
2023-11-21 14:47:33 +01:00
6277105476 dotnet 3
All checks were successful
First CI / build (push) Successful in 1m22s
First CI / test (push) Successful in 14s
2023-11-21 14:43:27 +01:00
2012fb9dcb dotnet 2 2023-11-21 14:42:29 +01:00
0587b30b5d dotnet
Some checks failed
First CI / build (push) Successful in 50s
First CI / test (push) Failing after 9s
2023-11-21 14:38:25 +01:00
7e4a5a66fb Commit 4
Some checks failed
First CI / build (push) Failing after 13s
2023-11-21 14:31:08 +01:00
d609949a83 Commit 3
Some checks failed
First CI / build (push) Failing after 11s
2023-11-21 14:30:09 +01:00
5bdc87c3a9 committed zad_3
Some checks failed
First CI / build (push) Failing after 12s
2023-11-21 14:22:11 +01:00
a7d9751fd9 Commit zad_3
Some checks failed
First CI / build (push) Failing after 12s
2023-11-21 14:16:45 +01:00
53ca928480 Commit zad_2
Some checks failed
First CI / build (push) Failing after 13s
2023-11-21 14:10:21 +01:00
1de4434f6b Commit_12345
All checks were successful
First CI / build (push) Successful in 8s
2023-11-21 14:06:12 +01:00
7618baa326 Commit_1234 2023-11-21 14:05:20 +01:00
ae00e8cce2 Merge branch 'main' of https://gitea.cs.pollub.pl/BendeeBoo/Lab_7 2023-11-21 14:04:24 +01:00
3467335a07 12314 2023-11-21 14:03:27 +01:00
b98ba1d66b 12314 2023-11-21 14:02:49 +01:00
7030fd20c4 Commit Lab_7_3 2023-11-21 13:59:56 +01:00
f382693ac7 Merge branch 'main' of https://gitea.cs.pollub.pl/BendeeBoo/Lab_7 2023-11-21 13:59:54 +01:00
0f62bb12bf Commit Lab_7_2 2023-11-21 13:58:45 +01:00
3 changed files with 25 additions and 2 deletions

View File

@@ -4,6 +4,17 @@ on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
rid: ["win-x64", "linux-x64"]
steps:
-name: Printing hello
run: echo "Hello, "
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
- run: dotnet restore
- run: dotnet publish -o app -r linux-x64 --sc /p:PublishSingleFile=true,AssemblyName=app
- uses: actions/upload-artifact@v3
with:
name: app.tar
path: app.tar

10
Lab_7.csproj Normal file
View File

@@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

2
Program.cs Normal file
View File

@@ -0,0 +1,2 @@
// See https://aka.ms/new-console-template for more information
Console.WriteLine("Hello, World!");