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

Re-enable other platforms

This commit is contained in:
Luke Ceddia 2021-02-02 23:00:43 +11:00
parent 5ef682c7ca
commit 39782d3475

View file

@ -2,12 +2,11 @@ on:
push: push:
branches: branches:
- development - development
- ci-test
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
@ -38,7 +37,7 @@ jobs:
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
@ -80,7 +79,7 @@ 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:
@ -98,4 +97,4 @@ jobs:
aws-region: us-east-2 aws-region: us-east-2
- name: Publish to S3 - name: Publish to S3
if: github.event_name == 'push' if: github.event_name == 'push'
run: .ci/deploy.bat run: .ci/deploy.ps1