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:52:08 +0300
committerGitHub <noreply@github.com>2022-11-06 21:52:08 +0300
commit0b228a4316fd13c42ebcadbef9ee9b8a10d397f4 (patch)
tree945d5e61efa2f67c68dbb785ffdf55f214eda877
parent0dcd01ba8cb32323cb5b597a350331891a30c341 (diff)
Update build.yaml
-rw-r--r--.github/workflows/build.yaml50
1 files changed, 25 insertions, 25 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index d2ed60f..3ae1dee 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -28,43 +28,43 @@ jobs:
run: sudo apt-get install gcc-arm-linux-gnueabihf gcc-aarch64-linux-gnu
- name: Copy main files
run: >-
- mkdir -p ${{ OUTPUT_DIR }}
+ mkdir -p ${{ env.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 }}
+ run: dotnet publish tools_sources/NesTiler/NesTiler -c Release -r linux-x64 --no-self-contained -o ${{ env.TOOLS_DIR }}
- name: Build nesasm for Linux-x64
- run: make -C tools_sources/nesasm/source EXEDIR=../../../${{ TOOLS_DIR }}
+ run: make -C tools_sources/nesasm/source EXEDIR=../../../${{ env.TOOLS_DIR }}
- name: Upload artifact for Linux-x64
uses: actions/upload-artifact@v3
with:
- name: ${{ APP_NAME }}-linux-x64
- path: ${{ OUTPUT_DIR }}
+ name: ${{ env.APP_NAME }}-linux-x64
+ path: ${{ env.OUTPUT_DIR }}
- name: Clean
run: >-
- rm ${{ TOOLS_DIR }}/*
+ rm ${{ env.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 }}
+ run: dotnet publish tools_sources/NesTiler/NesTiler -c Release -r linux-arm --no-self-contained -o ${{ env.TOOLS_DIR }}
- name: Build nesasm for Linux-ARM32
- run: make -C tools_sources/nesasm/source EXEDIR=../../../${{ TOOLS_DIR }} CC=arm-linux-gnueabihf-gcc
+ run: make -C tools_sources/nesasm/source EXEDIR=../../../${{ env.TOOLS_DIR }} CC=arm-linux-gnueabihf-gcc
- name: Upload artifact for Linux-ARM32
uses: actions/upload-artifact@v3
with:
- name: ${{ APP_NAME }}-linux-arm32
- path: ${{ OUTPUT_DIR }}
+ name: ${{ env.APP_NAME }}-linux-arm32
+ path: ${{ env.OUTPUT_DIR }}
- name: Clean
run: >-
- rm ${{ TOOLS_DIR }}/*
+ rm ${{ env.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 }}
+ run: dotnet publish tools_sources/NesTiler/NesTiler -c Release -r linux-arm64 --no-self-contained -o ${{ env.TOOLS_DIR }}
- name: Build nesasm for Linux-ARM64
- run: make -C tools_sources/nesasm/source EXEDIR=../../../${{ TOOLS_DIR }} CC=aarch64-linux-gnu-gcc
+ run: make -C tools_sources/nesasm/source EXEDIR=../../../${{ env.TOOLS_DIR }} CC=aarch64-linux-gnu-gcc
- name: Upload artifact for Linux-ARM64
uses: actions/upload-artifact@v3
with:
- name: ${{ APP_NAME }}-linux-arm64
- path: ${{ OUTPUT_DIR }}
+ name: ${{ env.APP_NAME }}-linux-arm64
+ path: ${{ env.OUTPUT_DIR }}
build-macos:
runs-on: macos-latest
@@ -85,17 +85,17 @@ jobs:
run: brew install argp-standalone
- name: Copy main files
run: >-
- mkdir -p ${{ OUTPUT_DIR }}
+ mkdir -p ${{ env.OUTPUT_DIR }}
cp -fR *.asm Makefile LICENSE README.md configs spec demos games homebrew output
- name: Build NesTiler for MacOS-x64
- run: dotnet publish tools_sources/NesTiler/NesTiler -c Release -r mac-x64 --no-self-contained -o ${{ TOOLS_DIR }}
+ run: dotnet publish tools_sources/NesTiler/NesTiler -c Release -r mac-x64 --no-self-contained -o ${{ env.TOOLS_DIR }}
- name: Build nesasm for MacOS-x64
- run: make -C tools_sources/nesasm/source EXEDIR=../../../${{ TOOLS_DIR }}
+ run: make -C tools_sources/nesasm/source EXEDIR=../../../${{ env.TOOLS_DIR }}
- name: Upload artifact for MacOS-x64
uses: actions/upload-artifact@v3
with:
- name: ${{ APP_NAME }}-macos-x64
- path: ${{ OUTPUT_DIR }}
+ name: ${{ env.APP_NAME }}-macos-x64
+ path: ${{ env.OUTPUT_DIR }}
build-windows:
runs-on: windows-latest
@@ -123,14 +123,14 @@ jobs:
libargp-devel
- name: Copy main files
run: >-
- mkdir -p ${{ OUTPUT_DIR }}
+ mkdir -p ${{ env.OUTPUT_DIR }}
cp -fR *.asm Makefile LICENSE README.md configs spec demos games homebrew output
- name: Build NesTiler for Win-x64
- run: dotnet publish tools_sources/NesTiler/NesTiler -c Release -r win-x64 --no-self-contained -o ${{ TOOLS_DIR }}
+ run: dotnet publish tools_sources/NesTiler/NesTiler -c Release -r win-x64 --no-self-contained -o ${{ env.TOOLS_DIR }}
- name: Build nesasm for Win-x64
- run: make -C tools_sources/nesasm/source EXEDIR=../../../${{ TOOLS_DIR }}
+ run: make -C tools_sources/nesasm/source EXEDIR=../../../${{ env.TOOLS_DIR }}
- name: Upload artifact for Win-x64
uses: actions/upload-artifact@v3
with:
- name: ${{ APP_NAME }}-win-x64
- path: ${{ OUTPUT_DIR }}
+ name: ${{ env.APP_NAME }}-win-x64
+ path: ${{ env.OUTPUT_DIR }}