Skip to content

Commit

Permalink
made a bit of progress, expanding to mac and windows (still expecting…
Browse files Browse the repository at this point in the history
… a fail).
  • Loading branch information
DualBrain committed Sep 8, 2022
1 parent a1a72fb commit e3df332
Showing 1 changed file with 56 additions and 57 deletions.
113 changes: 56 additions & 57 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,62 +27,61 @@ jobs:
name: upload linux ${{ github.run_number }}
path: /home/runner/work/qb64/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
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
with:
name: upload macos ${{ github.run_number }}
path: /home/runner/work/qb64/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 ${{ github.run_number }}
path: ${{ github.workspace }}\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 ${{ github.run_number }}
path: ${{ github.workspace }}\qb64_*.7z

0 comments on commit e3df332

Please sign in to comment.