From 51fabdb955eae2daeb1e8effb1e9a9585fca182e Mon Sep 17 00:00:00 2001 From: calloc134 <115209243+calloc134@users.noreply.github.com> Date: Wed, 15 May 2024 00:23:01 +0900 Subject: [PATCH 1/5] =?UTF-8?q?ci=E6=83=85=E5=A0=B1=E3=82=92=E3=83=86?= =?UTF-8?q?=E3=82=B9=E3=83=88=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 000000000..061a278d5 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,26 @@ +# AlterISO5のビルドを行うGithub Actions + +name: build AlterISO5 + +on: + push: + branches: + - dev + pull_request: + branches: + - dev + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Build Dockerfile + run: docker build -t alteriso5 . + + - name: Run Dockerfile + run: docker run -it --rm -v $(pwd):/mnt alteriso5 From 8dae4f34d7c7ddef22e9120938c1042e66257b65 Mon Sep 17 00:00:00 2001 From: calloc134 <115209243+calloc134@users.noreply.github.com> Date: Wed, 15 May 2024 00:25:04 +0900 Subject: [PATCH 2/5] =?UTF-8?q?fix:=20=E7=AB=AF=E6=9C=AB=E3=81=AE=E3=82=A2?= =?UTF-8?q?=E3=82=BF=E3=83=83=E3=83=81=E3=81=8C=E4=B8=8D=E8=A6=81=E3=81=AA?= =?UTF-8?q?=E3=81=AE=E3=81=A7=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 061a278d5..47fa0df71 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,4 +23,4 @@ jobs: run: docker build -t alteriso5 . - name: Run Dockerfile - run: docker run -it --rm -v $(pwd):/mnt alteriso5 + run: docker run --rm -v $(pwd):/mnt alteriso5 From a75eb3255326b8be9011600a2b579712f5ef5cb8 Mon Sep 17 00:00:00 2001 From: calloc134 <115209243+calloc134@users.noreply.github.com> Date: Wed, 15 May 2024 00:26:37 +0900 Subject: [PATCH 3/5] =?UTF-8?q?fix:=20=E7=89=B9=E6=A8=A9=E3=82=B3=E3=83=B3?= =?UTF-8?q?=E3=83=86=E3=83=8A=E3=81=A8=E3=81=97=E3=81=A6=E5=AE=9F=E8=A1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 47fa0df71..3c7d8bd69 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,4 +23,4 @@ jobs: run: docker build -t alteriso5 . - name: Run Dockerfile - run: docker run --rm -v $(pwd):/mnt alteriso5 + run: docker run --rm -v $(pwd):/mnt alteriso5 --privileged From 54d3fb4da20f07e1ac75e835bc9cb601a3301bc8 Mon Sep 17 00:00:00 2001 From: calloc134 <115209243+calloc134@users.noreply.github.com> Date: Wed, 15 May 2024 00:28:21 +0900 Subject: [PATCH 4/5] =?UTF-8?q?fix:=20=E3=83=95=E3=83=A9=E3=82=B0=E4=BD=8D?= =?UTF-8?q?=E7=BD=AE=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3c7d8bd69..4dee1f8ba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,4 +23,4 @@ jobs: run: docker build -t alteriso5 . - name: Run Dockerfile - run: docker run --rm -v $(pwd):/mnt alteriso5 --privileged + run: docker run --privileged --rm -v $(pwd):/mnt alteriso5 From 7175a480d07102cc4c2ebe3f9a7828f78fbe15d4 Mon Sep 17 00:00:00 2001 From: calloc134 <115209243+calloc134@users.noreply.github.com> Date: Wed, 15 May 2024 00:45:38 +0900 Subject: [PATCH 5/5] =?UTF-8?q?style:=20=E3=82=B3=E3=83=A1=E3=83=B3?= =?UTF-8?q?=E3=83=88=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4dee1f8ba..1e8ab7622 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,3 +24,5 @@ jobs: - name: Run Dockerfile run: docker run --privileged --rm -v $(pwd):/mnt alteriso5 + + # TODO: アーティファクトをアップロードする機能の実装