stages:
- install
- build
install-job:
stage: install
script:
- apt-get update
- apt-get install sudo
- apt-get install curl -y
- apt-get install wget -y
- chmod +x dotnet-install.sh
- sudo ./dotnet-install.sh --runtime dotnet --version 8.0.0
tags:
- .net
- c#
build-job:
stage: build
script:
- dotnet --version
- echo "Compiling the code..."
- dotnet build
- echo "Compile complete."
tags:
- .net
- c#
stages:
- install
- build
install-job:
stage: install
script:
- apt-get update
- apt-get install sudo
- apt-get install curl -y
- apt-get install wget -y
- chmod +x dotnet-install.sh
- sudo ./dotnet-install.sh --runtime dotnet --version 8.0.0
tags:
- .net
- c#
build-job:
stage: build
script:
- dotnet --version
- echo "Compiling the code..."
- dotnet build
- echo "Compile complete."
tags:
- .net
- c#