mirror of
https://github.com/Egor00f/kolibrios-gcc-toolchain.git
synced 2024-11-22 09:13:48 +01:00
106 lines
2.6 KiB
YAML
106 lines
2.6 KiB
YAML
name: test
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
#Test linux install script
|
|
linux-install:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Run script
|
|
run: echo '/home/autobuild/tools' | ${{ github.workspace }}/./install.sh
|
|
|
|
- name: Add toolchain to path
|
|
run: echo "/home/autobuild/tools/win32/bin" >> $GITHUB_PATH
|
|
|
|
- name: Test run
|
|
run: |
|
|
kos32-gcc -v
|
|
kos32-g++ -v
|
|
|
|
#Test windows install script
|
|
windows-install:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install depends
|
|
run: |
|
|
choco install wget
|
|
choco install 7zip
|
|
|
|
- name: Run script
|
|
run: ${{ github.workspace }}/install.bat
|
|
|
|
- name: Add toolchain to path
|
|
run: echo "C:\MinGW\msys\1.0\home\autobuild\tools\win32\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
|
|
|
|
- name: Test run
|
|
run: |
|
|
kos32-g++ -v
|
|
kos32-gcc -v
|
|
shell: cmd
|
|
|
|
#Test Windows Installer
|
|
build-Installer:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Build
|
|
run: |
|
|
cmake -B ${{ github.workspace }}/build
|
|
cmake --build ${{ github.workspace }}/build --target Installer
|
|
|
|
- name: Upload artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: windows-installer
|
|
# Upload entire repository
|
|
path: './build/installer.exe'
|
|
|
|
# Test Package
|
|
package:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Build
|
|
run: |
|
|
cmake -B ${{ github.workspace }}/build
|
|
cmake --build ${{ github.workspace }}/build --target Package
|
|
|
|
- name: Upload artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: package
|
|
# Upload entire repository
|
|
path: './build/package.deb'
|
|
|
|
- name: Install package
|
|
run: echo '/kolibrios-toolchain' | sudo apt install ${{ github.workspace }}/build/package.deb -y
|
|
|
|
- name: Add toolchain to path
|
|
run: echo "/home/autobuild/tools/win32/bin" >> $GITHUB_PATH
|
|
|
|
- name: Test run
|
|
run: |
|
|
kos32-g++ -v
|
|
kos32-gcc -v
|
|
/home/autobuild/tools/win32/bin/kos32-gcc -v
|
|
/home/autobuild/tools/win32/bin/kos32-g++ -v
|
|
/kolibrios-toolchain/win32/bin/kos32-gcc -v
|
|
/kolibrios-toolchain/win32/bin/kos32-g++ -v
|
|
|
|
- name: Remove package
|
|
run: sudo apt remove kos32-gcc
|
|
|