Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

Commit

Permalink
Improvements for package architecture.
Browse files Browse the repository at this point in the history
Fix readme
  • Loading branch information
networkfusion committed Jan 16, 2023
1 parent dda241c commit 2c6ebbb
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright (c) NetworkFusion 2023
# Copyright (c) N64-Tools, NetworkFusion and contributers 2023
# See LICENSE file in the project root for full license information.

name: Build Docker Container
name: Build N64 MIPS GCC toolchain Docker Container

env:
GCR_REGISTRY: ghcr.io
Expand Down
15 changes: 8 additions & 7 deletions .github/workflows/build-toolchain.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Copyright (c) NetworkFusion 2023
# Copyright (c) N64-Tools, NetworkFusion and contributers 2023
# See LICENSE file in the project root for full license information.

# This workflow will build the libdragon N64 GCC toolchain to keep it up-to-date.
name: Build latest libdragon N64 MIPS GCC toolchain
name: Build N64 MIPS GCC toolchain for native environments

on:
# This action will take about 40-70 minutes to run!
Expand Down Expand Up @@ -36,7 +36,7 @@ jobs:
]

env:
Build_Directory: gcc-toolchain-mips64
Build_Directory: gcc-toolchain-mips64_n64-tools

steps:
- name: Install native system build dependencies
Expand Down Expand Up @@ -128,11 +128,11 @@ jobs:
fpm \
-t deb \
-s dir \
-p $Package_Name-any.deb \
-p $Package_Name-$Package_Architecture.deb \
--name $Package_Name \
--license $Package_License \
--version $Package_Version.$Package_Revision \
--architecture all \
--architecture $Package_Architecture \
--description "$Package_Description" \
--url "$Package_Url" \
--maintainer "$Package_Maintainer" \
Expand All @@ -144,11 +144,11 @@ jobs:
fpm \
-t rpm \
-s dir \
-p $Package_Name-x86_64.rpm \
-p $Package_Name-$Package_Architecture.rpm \
--name $Package_Name \
--license $Package_License \
--version $Package_Version.$Package_Revision \
--architecture x86_64 \
--architecture $Package_Architecture \
--description "$Package_Description" \
--url "$Package_Url" \
--maintainer "$Package_Maintainer" \
Expand All @@ -161,6 +161,7 @@ jobs:
Package_Name: ${{ env.Build_Directory }}
Package_Version: ${{ steps.gcc-version-generator.outputs.GCC_VERSION }}
Package_Revision: ${{ github.run_id }}
Package_Architecture: x86_64
Package_License: GPL
Package_Description: MIPS GCC toolchain for the N64
Package_Url: https://github.com/n64-tools/
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ The binaries can be downloaded (from releases) and used as part of other build s
Architecture | Download Links
--- | ---
Windows x86_x64 | [Latest](https://github.com/n64-tools/gcc-toolchain-mips64/releases/latest/download/gcc-toolchain-mips64-win64.zip)
Debian | [Latest](https://github.com/n64-tools/gcc-toolchain-mips64/releases/download/latest/gcc-toolchain-mips64-any.deb)
Redhat | [Latest](https://github.com/n64-tools/gcc-toolchain-mips64/releases/download/latest/gcc-toolchain-mips64-x86_64.rpm)
Debian x86_x64 | [Latest](https://github.com/n64-tools/gcc-toolchain-mips64/releases/download/latest/gcc-toolchain-mips64_n64-tools-x86_64.deb)
Redhat x86_x64 | [Latest](https://github.com/n64-tools/gcc-toolchain-mips64/releases/download/latest/gcc-toolchain-mips64_n64-tools-x86_64.rpm)
Docker | [Latest](https://github.com/n64-tools/gcc-toolchain-mips64/pkgs/container/gcc-toolchain-mips64)


Expand Down

0 comments on commit 2c6ebbb

Please sign in to comment.