1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-02 22:21:21 +00:00

made a bit of progress, expanding to mac and windows (still expecting a fail).

This commit is contained in:
Cory Smith 2022-09-08 18:26:59 -05:00
parent a1a72fbd99
commit e3df33289b

View file

@ -27,62 +27,61 @@ jobs:
name: upload linux ${{ github.run_number }} name: upload linux ${{ github.run_number }}
path: /home/runner/work/qb64/qb64_*.tar.gz path: /home/runner/work/qb64/qb64_*.tar.gz
# macos-build: macos-build:
# runs-on: macos-latest runs-on: macos-latest
# if: "!contains(github.event.head_commit.message, 'ci-skip')" if: "!contains(github.event.head_commit.message, 'ci-skip')"
# steps: steps:
# - uses: actions/checkout@v2 - uses: actions/checkout@v2
# - name: Bootstrap compiler - name: Bootstrap compiler
# run: .ci/bootstrap.sh osx run: .ci/bootstrap.sh osx
# - name: Compile - name: Compile
# run: .ci/compile.sh run: .ci/compile.sh
# - name: Publish - name: Publish
# if: github.event_name == 'push' if: github.event_name == 'push'
# run: .ci/deploy.sh osx run: .ci/deploy.sh osx
# - name: Upload - name: Upload
# uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
# if: always() with:
# with: name: upload macos ${{ github.run_number }}
# name: upload macos path: /home/runner/work/qb64/qb64_*.tar.gz
# path: ./qb64*.tar.gz
# windows-x86-build: windows-x86-build:
# runs-on: windows-latest runs-on: windows-latest
# if: "!contains(github.event.head_commit.message, 'ci-skip')" if: "!contains(github.event.head_commit.message, 'ci-skip')"
# env: env:
# PLATFORM: x86 PLATFORM: x86
# steps: steps:
# - uses: actions/checkout@v2 - uses: actions/checkout@v2
# - name: Bootstrap compiler - name: Bootstrap compiler
# run: .ci/bootstrap.bat run: .ci/bootstrap.bat
# - name: Compile - name: Compile
# run: .ci/compile.bat run: .ci/compile.bat
# - name: Publish - name: Publish
# if: github.event_name == 'push' if: github.event_name == 'push'
# run: .ci/deploy.ps1 run: .ci/deploy.ps1
# - name: Upload - name: Upload
# uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
# if: always() if: always()
# with: with:
# name: upload winx86 name: upload winx86 ${{ github.run_number }}
# path: .\qb64*.7z path: ${{ github.workspace }}\qb64_*.7z
# windows-x64-build: windows-x64-build:
# runs-on: windows-latest runs-on: windows-latest
# if: "!contains(github.event.head_commit.message, 'ci-skip')" if: "!contains(github.event.head_commit.message, 'ci-skip')"
# env: env:
# PLATFORM: x64 PLATFORM: x64
# steps: steps:
# - uses: actions/checkout@v2 - uses: actions/checkout@v2
# - name: Bootstrap compiler - name: Bootstrap compiler
# run: .ci/bootstrap.bat run: .ci/bootstrap.bat
# - name: Compile - name: Compile
# run: .ci/compile.bat run: .ci/compile.bat
# - name: Publish - name: Publish
# if: github.event_name == 'push' if: github.event_name == 'push'
# run: .ci/deploy.ps1 run: .ci/deploy.ps1
# - name: Upload - name: Upload
# uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
# with: with:
# name: upload winx64 name: upload winx64 ${{ github.run_number }}
# path: .\qb64_development* path: ${{ github.workspace }}\qb64_*.7z