1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-03 10:01:21 +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: jobs:
linux-build: linux-build:
runs-on: ubuntu-latest runs-on: ubuntu-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: Install dependencies - name: Install dependencies
#run: sudo apt update && sudo apt install libglu1-mesa-dev libncurses-dev run: sudo apt update && sudo apt install libglu1-mesa-dev libncurses-dev
#- name: Bootstrap compiler - name: Bootstrap compiler
#run: .ci/bootstrap.sh lnx run: .ci/bootstrap.sh lnx
#- name: Compile - name: Compile
#run: .ci/compile.sh run: .ci/compile.sh
#- name: Update source - name: Update source
#if: github.event_name == 'push' if: github.event_name == 'push'
#run: .ci/update-source.sh run: .ci/update-source.sh
#- name: Push to repository - name: Push to repository
#if: github.event_name == 'push' if: github.event_name == 'push'
#uses: ad-m/github-push-action@19caa5c351f47734055690f7d01aaaef2f9114d5 uses: ad-m/github-push-action@19caa5c351f47734055690f7d01aaaef2f9114d5
#with: with:
# github_token: ${{ secrets.GITHUB_TOKEN }} github_token: ${{ secrets.GITHUB_TOKEN }}
# branch: development branch: development
- name: Set deployment SSH key - name: Set deployment SSH key
if: github.event_name == 'push' if: github.event_name == 'push'
uses: shimataro/ssh-key-action@v2.1.0 uses: shimataro/ssh-key-action@v2.1.0
@ -90,15 +90,11 @@ jobs:
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
run: .ci/bootstrap.bat
- name: Compile
run: .ci/compile.bat
- name: Set deployment SSH key - name: Set deployment SSH key
if: github.event_name == 'push' if: github.event_name == 'push'
uses: shimataro/ssh-key-action@v2.1.0 uses: shimataro/ssh-key-action@v2.1.0