mirror of
https://github.com/OpenSim-NGC/OpenSim-Sasquatch.git
synced 2024-11-21 06:26:09 -07:00
remove github action for net48
This commit is contained in:
parent
83d85cc2b0
commit
6b87121350
3 changed files with 2 additions and 63 deletions
57
.github/workflows/msbuild48.yml
vendored
57
.github/workflows/msbuild48.yml
vendored
|
@ -1,57 +0,0 @@
|
|||
name: .msbuild48
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "master" ]
|
||||
paths:
|
||||
- '**.cs'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
if: github.repository == 'opensim/opensim'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: shortsha
|
||||
id: vars
|
||||
run: echo "::set-output name=sha_short::$(git rev-parse --short HEAD)"
|
||||
- name: preBuild
|
||||
run: bash ${GITHUB_WORKSPACE}/runprebuild48.sh
|
||||
|
||||
- name: Build
|
||||
id: build
|
||||
run: msbuild /p:Configuration=Release OpenSim.sln
|
||||
|
||||
- name: release
|
||||
if: success()
|
||||
run: zip -r LastBuild.zip bin ThirdPartyLicenses README.md CONTRIBUTORS.txt LICENSE.txt
|
||||
- uses: softprops/action-gh-release@v1
|
||||
if: success()
|
||||
with:
|
||||
tag_name: r${{ steps.vars.outputs.sha_short }}
|
||||
name: LastAutoBuild
|
||||
files: LastBuild.zip
|
||||
|
||||
- name: report push to irc if from main OpenSim repository
|
||||
if: github.event_name == 'push' && github.repository_owner == 'opensim'
|
||||
uses: rectalogic/notify-irc@v1
|
||||
with:
|
||||
channel: "#opensim-dev"
|
||||
server: "irc.libera.chat"
|
||||
nickname: osgithub
|
||||
message: |
|
||||
${{ github.actor }} pushed to ${{ github.repository }}
|
||||
${{ join(github.event.commits.*.message, '\n') }}
|
||||
mono framework4.8 compile: ${{ steps.build.conclusion }}
|
||||
|
||||
- name: manual report to irc if from main OpenSim repository
|
||||
if: github.event_name == 'workflow_dispatch' && github.repository_owner == 'opensim'
|
||||
uses: rectalogic/notify-irc@v1
|
||||
with:
|
||||
channel: "#opensim-dev"
|
||||
server: "irc.libera.chat"
|
||||
nickname: osgithub
|
||||
message: |
|
||||
${{ github.repository }}
|
||||
mono framework4.8 compile: ${{ steps.build.conclusion }}
|
5
.github/workflows/msbuildnet6.yml
vendored
5
.github/workflows/msbuildnet6.yml
vendored
|
@ -2,7 +2,7 @@ name: .msbuildnet6
|
|||
|
||||
on:
|
||||
push:
|
||||
branches: [ "dotnet6" ]
|
||||
branches: [ "master" ]
|
||||
paths:
|
||||
- '**.cs'
|
||||
workflow_dispatch:
|
||||
|
@ -10,11 +10,10 @@ on:
|
|||
jobs:
|
||||
build:
|
||||
|
||||
if: github.repository == 'opensim/opensim'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
ref: dotnet6
|
||||
- name: shortsha
|
||||
id: vars
|
||||
run: echo "::set-output name=sha_short::$(git rev-parse --short HEAD)"
|
||||
|
|
|
@ -4,9 +4,6 @@ get or update source from git
|
|||
|
||||
`git clone git://opensimulator.org/git/opensim`
|
||||
|
||||
change to dotnet6 test branch
|
||||
|
||||
`git checkout dotnet6`
|
||||
|
||||
|
||||
# Building on Windows
|
||||
|
|
Loading…
Reference in a new issue