Skip to content

Commit

Permalink
👷 build automatically
Browse files Browse the repository at this point in the history
  • Loading branch information
SydneyOwl committed Mar 11, 2024
1 parent ca5aff0 commit da8f432
Show file tree
Hide file tree
Showing 3 changed files with 87 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/gt12.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: GT12 BUILD

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:

build:
runs-on: windows-latest

steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe
uses: microsoft/[email protected]

# Restore the application to populate the obj folder with RuntimeIdentifiers
- name: Build the application
run: |
cd GT12
msbuild /t:Restore
msbuild
29 changes: 29 additions & 0 deletions .github/workflows/shx8x00.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: shx8x00 BUILD

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:

build:
runs-on: windows-latest

steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe
uses: microsoft/[email protected]

# Restore the application to populate the obj folder with RuntimeIdentifiers
- name: Build the application
run: |
cd shx8x00
msbuild SHX8800.csproj /t:Restore
msbuild SHX8800.csproj
29 changes: 29 additions & 0 deletions .github/workflows/shx8x00_nobt.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: shx8x00_nobt BUILD

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:

build:
runs-on: windows-latest

steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe
uses: microsoft/[email protected]

# Restore the application to populate the obj folder with RuntimeIdentifiers
- name: Build the application
run: |
cd shx8x00
msbuild SHX8800_nobt.csproj /t:Restore
msbuild SHX8800_nobt.csproj

0 comments on commit da8f432

Please sign in to comment.