From 657e18b821374165aeac10133d7bbb795a9bab95 Mon Sep 17 00:00:00 2001 From: minusno0708 Date: Fri, 19 Apr 2024 00:30:05 +0900 Subject: [PATCH 1/2] =?UTF-8?q?chore:Win=E3=83=95=E3=82=A9=E3=83=BC?= =?UTF-8?q?=E3=83=A0=E3=82=A2=E3=83=97=E3=83=AA=E3=81=AE=E3=83=93=E3=83=AB?= =?UTF-8?q?=E3=83=89=E7=94=A8=E3=81=AE=E7=92=B0=E5=A2=83=E3=82=92=E8=A8=AD?= =?UTF-8?q?=E5=AE=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build_server.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/build_server.yml diff --git a/.github/workflows/build_server.yml b/.github/workflows/build_server.yml new file mode 100644 index 0000000..eb9220b --- /dev/null +++ b/.github/workflows/build_server.yml @@ -0,0 +1,19 @@ +name: RemoConMouse Server Build +on: + push: + branches: + - main + +jobs: + build-server: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v2 + + - name: Change directory + run: cd src/server/RemoConMouse + + - name: Setup .Net + uses: actions/setup-dotnet@v1 + with: + dotnet-version: 8.0.202 From 8299f5a41563d25837b172e3a4f0199fb5d07a50 Mon Sep 17 00:00:00 2001 From: minusno0708 Date: Fri, 19 Apr 2024 00:39:33 +0900 Subject: [PATCH 2/2] =?UTF-8?q?chore:android=E3=82=A2=E3=83=97=E3=83=AA?= =?UTF-8?q?=E3=81=AE=E3=83=93=E3=83=AB=E3=83=89=E7=94=A8=E3=81=AE=E7=92=B0?= =?UTF-8?q?=E5=A2=83=E3=82=92=E8=A8=AD=E5=AE=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build_client.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/build_client.yml diff --git a/.github/workflows/build_client.yml b/.github/workflows/build_client.yml new file mode 100644 index 0000000..00a74f2 --- /dev/null +++ b/.github/workflows/build_client.yml @@ -0,0 +1,20 @@ +name: RemoConMouse Client Build +on: + push: + branches: + - main + +jobs: + build-client: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v2 + + - name: Change directory + run: cd src/client/RemoConMouse + + - name: Setup JDK 19 + uses: actions/setup-java@v3 + with: + java-version: '19' + distribution: 'zulu'