1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-06 02:20:25 +00:00
QB64-PE/.github/workflows/ci.yml

129 lines
3.7 KiB
YAML
Raw Normal View History

name: CI
2022-04-28 02:23:33 +00:00
on:
pull_request:
branches:
- 'main'
push:
branches:
- 'main'
tags:
- 'v*'
jobs:
2022-04-25 05:33:39 +00:00
build:
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
platform: x64
prefix: lnx
- os: macos-latest
platform: x64
prefix: osx
- os: windows-latest
platform: x64
prefix: win
- os: windows-latest
platform: x86
prefix: win
2022-04-25 05:33:39 +00:00
runs-on: ${{ matrix.os }}
env:
2022-04-25 05:33:39 +00:00
PLATFORM: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
2022-04-25 05:33:39 +00:00
2022-04-27 22:55:16 +00:00
# A deploy key is setup so that the potential push of ./internal/source can
# trigger a new build. Care is taken to make sure loops cannot happen.
- uses: webfactory/ssh-agent@v0.5.4
2022-04-28 02:23:33 +00:00
if: ${{ github.event_name == 'push' && matrix.os == 'ubuntu-latest' }}
2022-04-27 22:55:16 +00:00
with:
ssh-private-key: ${{ secrets.ACTION_DEPLOY_KEY }}
2022-04-25 05:33:39 +00:00
- name: Install dependencies
if: ${{ matrix.os == 'ubuntu-latest' }}
2022-04-25 14:27:20 +00:00
run: sudo apt update && sudo apt install build-essential x11-utils mesa-common-dev libglu1-mesa-dev libasound2-dev zlib1g-dev
2022-04-25 05:33:39 +00:00
- name: Calculate Version
shell: bash
run: .ci/calculate_version.sh
2022-04-25 05:33:39 +00:00
- name: Read version for artifacts
shell: bash
run: echo "version=$(.ci/read-version.sh)" >> $GITHUB_ENV
2022-04-25 05:33:39 +00:00
- name: Bootstrap compiler Linux/OSX
if: ${{ matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' }}
run: .ci/bootstrap.sh ${{ matrix.prefix }}
- name: Bootstrap compiler Windows
if: ${{ matrix.os == 'windows-latest' }}
run: .ci/bootstrap.bat
2022-04-25 05:33:39 +00:00
- name: Compile Linux/OSX
if: ${{ matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' }}
2022-06-08 02:37:30 +00:00
run: .ci/compile.sh ${{ matrix.prefix }}
2022-04-25 05:33:39 +00:00
- name: Compile Windows
if: ${{ matrix.os == 'windows-latest' }}
run: .ci/compile.bat
2022-04-25 05:33:39 +00:00
2022-06-08 04:23:13 +00:00
- name: Test libqb
shell: bash
run: tests/run_c_tests.sh
- name: Print QB64-PE Version
run: ./qb64pe -?
2022-04-28 23:34:11 +00:00
- name: Test
shell: bash
run: tests/run_tests.sh
- name: Create QB64-PE Artifact
shell: bash
run: .ci/make-dist.sh ${{ matrix.os }} "${{ env.version }}"
2022-04-25 05:33:39 +00:00
2022-04-27 05:11:02 +00:00
# Note that compiling programs in dist does modify the ./dist and make it
# dirty, but that's ok because we've already create the .7z or .tar.gz
# artifacts in the previous step
- name: Test QB64-PE Artifact
2022-04-27 05:11:02 +00:00
shell: bash
run: tests/run_dist_tests.sh ./dist/qb64pe ${{ matrix.prefix }}
2022-04-27 05:11:02 +00:00
2022-04-27 22:55:16 +00:00
# Only update ./internal/source if we're building on Linux, building on
# the main branch, and building a Pull request merge. Otherwise the repo
# is left alone.
- name: Update ./internal/source
if: ${{ github.event_name == 'push' && matrix.os == 'ubuntu-latest' && github.ref == 'refs/heads/main' && contains(github.event.head_commit.message, 'Merge pull request') }}
run: .ci/push-internal-source.sh
- uses: actions/upload-artifact@v3
2022-04-27 05:11:02 +00:00
if: always()
with:
name: qb64pe-${{ matrix.prefix }}${{ matrix.prefix == 'win' && format('-{0}', matrix.platform) || '' }}-${{ env.version }}
2022-04-25 05:33:39 +00:00
path: |
2022-04-28 23:34:11 +00:00
tests/results/
qb64pe_win-x86*.7z
qb64pe_win-x64*.7z
qb64pe_lnx*.tar.gz
qb64pe_osx*.tar.gz
2022-04-25 21:57:13 +00:00
- name: Create release
if: startsWith(github.ref, 'refs/tags/v')
uses: softprops/action-gh-release@v1
with:
draft: true
files: |
qb64pe_win-x86*.7z
qb64pe_win-x64*.7z
qb64pe_lnx*.tar.gz
qb64pe_osx*.tar.gz
2022-04-25 21:57:13 +00:00
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}