Fixup TARGET_ENDIAN_DEFAULT for 2.7.x and 2.8.x #71
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Compile GCC | |
on: | |
push: | |
tags: '*' | |
branches: [master] | |
paths-ignore: | |
- README.md | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
version: | |
- 2.5.7 | |
- 2.5.7-psx | |
- 2.6.0 | |
- 2.6.0-psx | |
- 2.6.3 | |
- 2.6.3-psx | |
- 2.7.0 | |
- 2.7.1 | |
- 2.7.2 | |
- 2.7.2-psx | |
- 2.7.2.1 | |
- 2.7.2.2 | |
- 2.7.2.3 | |
- 2.8.0 | |
- 2.8.0-psx | |
- 2.8.1 | |
- 2.8.1-psx | |
- 2.91.66 | |
- 2.91.66-psx | |
- 2.95.2 | |
- 2.95.2-psx | |
name: Build GCC ${{ matrix.version }} | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Build GCC | |
run: VERSION=${{ matrix.version }} make | |
- name: Create release archive | |
shell: bash | |
run: | | |
cd build-gcc-${{ matrix.version }} | |
tar -czvf ../gcc-${{ matrix.version }}.tar.gz * | |
- name: Create artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: gcc-${{ matrix.version }} | |
path: gcc-${{ matrix.version }}.tar.gz | |
- name: Publish release | |
uses: softprops/action-gh-release@v2 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: | | |
gcc-${{ matrix.version }}.tar.gz |