build g++/cc1plus

This commit is contained in:
alex 2021-08-22 18:14:21 +01:00
parent 7e8979a89e
commit 490f006528
No known key found for this signature in database
GPG Key ID: E907B20C17C70B03

View File

@ -48,6 +48,8 @@ jobs:
make cpp CFLAGS="${{ matrix.TARGET.CFLAGS }}" make cpp CFLAGS="${{ matrix.TARGET.CFLAGS }}"
make cc1 CFLAGS="${{ matrix.TARGET.CFLAGS }}" make cc1 CFLAGS="${{ matrix.TARGET.CFLAGS }}"
make xgcc CFLAGS="${{ matrix.TARGET.CFLAGS }}" make xgcc CFLAGS="${{ matrix.TARGET.CFLAGS }}"
make cc1plus CFLAGS="${{ matrix.TARGET.CFLAGS }}"
make g++ CFLAGS="${{ matrix.TARGET.CFLAGS }}"
- name: Test for file - name: Test for file
shell: bash shell: bash
run: | run: |
@ -58,15 +60,16 @@ jobs:
with: with:
name: cc1-${{ matrix.TARGET.OS }} name: cc1-${{ matrix.TARGET.OS }}
path: | path: |
as
cpp cpp
cc1 cc1
xgcc xgcc
cc1plus
g++
- name: Create release archive - name: Create release archive
shell: bash shell: bash
run: | run: |
cp xgcc gcc cp xgcc gcc
tar -czf ${{ matrix.TARGET.ARCHIVE_NAME }} cpp cc1 gcc tar -czf ${{ matrix.TARGET.ARCHIVE_NAME }} cpp cc1 gcc cc1plus g++
- name: Update release - name: Update release
uses: johnwbyrd/update-release@v1.0.0 uses: johnwbyrd/update-release@v1.0.0
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}