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

Windows only

This commit is contained in:
Luke Ceddia 2021-01-30 11:24:31 +11:00
parent b1d74ce57b
commit fc6d7c3a35
No known key found for this signature in database
GPG key ID: 319344384A0759B0

View file

@ -7,24 +7,24 @@ on:
jobs:
linux-build:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'ci-skip')"
if: "contains(github.event.head_commit.message, 'ci-skip')"
steps:
- uses: actions/checkout@v2
# - name: Install dependencies
#run: sudo apt update && sudo apt install libglu1-mesa-dev libncurses-dev
#- name: Bootstrap compiler
#run: .ci/bootstrap.sh lnx
#- name: Compile
#run: .ci/compile.sh
#- name: Update source
#if: github.event_name == 'push'
#run: .ci/update-source.sh
#- name: Push to repository
#if: github.event_name == 'push'
#uses: ad-m/github-push-action@19caa5c351f47734055690f7d01aaaef2f9114d5
#with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# branch: development
- name: Install dependencies
run: sudo apt update && sudo apt install libglu1-mesa-dev libncurses-dev
- name: Bootstrap compiler
run: .ci/bootstrap.sh lnx
- name: Compile
run: .ci/compile.sh
- name: Update source
if: github.event_name == 'push'
run: .ci/update-source.sh
- name: Push to repository
if: github.event_name == 'push'
uses: ad-m/github-push-action@19caa5c351f47734055690f7d01aaaef2f9114d5
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: development
- name: Set deployment SSH key
if: github.event_name == 'push'
uses: shimataro/ssh-key-action@v2.1.0
@ -90,15 +90,11 @@ jobs:
windows-x64-build:
runs-on: windows-latest
if: "contains(github.event.head_commit.message, 'ci-skip')"
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: Set deployment SSH key
if: github.event_name == 'push'
uses: shimataro/ssh-key-action@v2.1.0