62 lines
1.3 KiB
YAML
62 lines
1.3 KiB
YAML
# name: First CI
|
|
# on: [push]
|
|
|
|
# jobs:
|
|
# build:
|
|
# runs-on: ubuntu-latest
|
|
# steps:
|
|
# - uses: actions/checkout@v4
|
|
# - name: build using gcc
|
|
# run: gcc -Wall -Werror main.c
|
|
|
|
# ZAD 3
|
|
# name: First CI
|
|
# on: [push]
|
|
|
|
# jobs:
|
|
# build:
|
|
# runs-on: ubuntu-latest
|
|
# steps:
|
|
# - uses: actions/checkout@v4
|
|
# - name: build using gcc
|
|
# run: gcc -Wall -Werror main.c -o program
|
|
# - name: Archive production artifacts
|
|
# uses: actions/upload-artifact@v3
|
|
# with:
|
|
# name: program
|
|
# path: program
|
|
|
|
# ZAD 4
|
|
name: First CI
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-dotnet@v3
|
|
with:
|
|
dotnet-version: '8.0.x'
|
|
- run: dotnet restore
|
|
- run: dotnet build
|
|
- run: dotnet test
|
|
- run: dotnet publish -o app -r linux-x64 --sc/p:PublishSingleFile=true,AssemblyName=app
|
|
- run: tar cf app.tar app/
|
|
- uses: actions/upload-artifact@v3
|
|
with:
|
|
name: app.tar
|
|
path: app.tar
|
|
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
needs: build
|
|
steps:
|
|
- uses: actions/download-artifact@v3
|
|
with:
|
|
name: app.tar
|
|
- run: tar xf app.tar/app.tar
|
|
- run: ./app/app
|
|
|
|
# ZAD 5
|