Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/coolgirl-multicart/coolgirl-multirom-builder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-11-06 21:48:03 +0300
committerGitHub <noreply@github.com>2022-11-06 21:48:03 +0300
commitd56336f72ebd2f074ffbb26fb9f16af266817acc (patch)
tree6177c3ece9c9ca98de7a9ee16f923e75e4c802ee
parent06ef433e64f64738c2decdc2d5af181859eb544e (diff)
Update build.yaml
-rw-r--r--.github/workflows/build.yaml9
1 files changed, 2 insertions, 7 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index c2f55a4..0ce7c83 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -30,7 +30,6 @@ jobs:
run: >-
mkdir -p ${{ OUTPUT_DIR }} \
cp -fR *.asm Makefile LICENSE README.md configs spec demos games homebrew output
-
- name: Build NesTiler for Linux-x64
run: dotnet publish tools_sources/NesTiler/NesTiler -c Release -r linux-x64 --no-self-contained -o ${{ TOOLS_DIR }}
- name: Build nesasm for Linux-x64
@@ -40,12 +39,10 @@ jobs:
with:
name: ${{ APP_NAME }}-linux-x64
path: ${{ OUTPUT_DIR }}
-
- name: Clean
run: >-
rm ${{ TOOLS_DIR }}/*
make -C tools_sources/nesasm/source clean
-
- name: Build NesTiler for Linux-ARM32
run: dotnet publish tools_sources/NesTiler/NesTiler -c Release -r linux-arm --no-self-contained -o ${{ TOOLS_DIR }}
- name: Build nesasm for Linux-ARM32
@@ -55,12 +52,10 @@ jobs:
with:
name: ${{ APP_NAME }}-linux-arm32
path: ${{ OUTPUT_DIR }}
-
- name: Clean
run: >-
rm ${{ TOOLS_DIR }}/*
make -C tools_sources/nesasm/source clean
-
- name: Build NesTiler for Linux-ARM64
run: dotnet publish tools_sources/NesTiler/NesTiler -c Release -r linux-arm64 --no-self-contained -o ${{ TOOLS_DIR }}
- name: Build nesasm for Linux-ARM64
@@ -72,9 +67,9 @@ jobs:
path: ${{ OUTPUT_DIR }}
build-macos:
- APP_NAME: coolgirl-multirom-builder
+ runs-on: macos-latest
env:
- APP_NAME: coolgirl-combiner
+ APP_NAME: coolgirl-multirom-builder
OUTPUT_DIR: output
TOOLS_DIR: output/tools
steps: