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

Yet, yet, yet again.

This commit is contained in:
Cory Smith 2022-09-08 16:55:19 -05:00
parent a48a420a96
commit 875d225254

View file

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