mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-02-03 12:31:15 +00:00
Add release step to CI
This commit is contained in:
parent
4c80c8d923
commit
9907028e1c
98
.github/workflows/ci.yml
vendored
98
.github/workflows/ci.yml
vendored
@ -33,14 +33,80 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- { name: 'Linux', os: 'ubuntu-latest', dx5: false, config: true, build-type: 'Debug', linux: true, werror: true, clang-tidy: true }
|
- name: 'Linux'
|
||||||
- { name: 'MSVC (x86)', os: 'windows-latest', dx5: true, config: false, build-type: 'Debug', msvc: true, werror: false, clang-tidy: false, vc-arch: 'amd64_x86' }
|
os: 'ubuntu-latest'
|
||||||
- { name: 'MSVC (x64)', os: 'windows-latest', dx5: false, config: false, build-type: 'Debug', msvc: true, werror: false, clang-tidy: false, vc-arch: 'amd64' }
|
dx5: false
|
||||||
- { name: 'MSVC (arm64)', os: 'windows-latest', dx5: false, config: false, build-type: 'Debug', msvc: true, werror: false, clang-tidy: false, vc-arch: 'amd64_arm64' }
|
config: true
|
||||||
- { name: 'msys2 mingw32', os: 'windows-latest', dx5: false, config: false, build-type: 'Debug', mingw: true, werror: true, clang-tidy: true, msystem: 'mingw32', msys-env: 'mingw-w64-i686', shell: 'msys2 {0}' }
|
build-type: ${{ github.ref == 'refs/heads/master' && 'Release' || 'Debug' }}
|
||||||
- { name: 'msys2 mingw64', os: 'windows-latest', dx5: false, config: true, build-type: 'Debug', mingw: true, werror: true, clang-tidy: true, msystem: 'mingw64', msys-env: 'mingw-w64-x86_64', shell: 'msys2 {0}' }
|
linux: true
|
||||||
- { name: 'macOS', os: 'macos-latest', dx5: false, config: true, build-type: 'Debug', brew: true, werror: true, clang-tidy: false }
|
werror: true
|
||||||
- { name: 'Emscripten', os: 'ubuntu-latest', dx5: false, config: false, build-type: 'Debug', emsdk: true, werror: true, clang-tidy: false, cmake-wrapper: 'emcmake' }
|
clang-tidy: true
|
||||||
|
- name: 'MSVC (x86)'
|
||||||
|
os: 'windows-latest'
|
||||||
|
dx5: true
|
||||||
|
config: false
|
||||||
|
build-type: ${{ github.ref == 'refs/heads/master' && 'Release' || 'Debug' }}
|
||||||
|
msvc: true
|
||||||
|
werror: false
|
||||||
|
clang-tidy: false
|
||||||
|
vc-arch: 'amd64_x86'
|
||||||
|
- name: 'MSVC (x64)'
|
||||||
|
os: 'windows-latest'
|
||||||
|
dx5: false
|
||||||
|
config: false
|
||||||
|
build-type: ${{ github.ref == 'refs/heads/master' && 'Release' || 'Debug' }}
|
||||||
|
msvc: true
|
||||||
|
werror: false
|
||||||
|
clang-tidy: false
|
||||||
|
vc-arch: 'amd64'
|
||||||
|
- name: 'MSVC (arm64)'
|
||||||
|
os: 'windows-latest'
|
||||||
|
dx5: false
|
||||||
|
config: false
|
||||||
|
build-type: ${{ github.ref == 'refs/heads/master' && 'Release' || 'Debug' }}
|
||||||
|
msvc: true
|
||||||
|
werror: false
|
||||||
|
clang-tidy: false
|
||||||
|
vc-arch: 'amd64_arm64'
|
||||||
|
- name: 'msys2 mingw32'
|
||||||
|
os: 'windows-latest'
|
||||||
|
dx5: false
|
||||||
|
config: false
|
||||||
|
build-type: ${{ github.ref == 'refs/heads/master' && 'Release' || 'Debug' }}
|
||||||
|
mingw: true
|
||||||
|
werror: true
|
||||||
|
clang-tidy: true
|
||||||
|
msystem: 'mingw32'
|
||||||
|
msys-env: 'mingw-w64-i686'
|
||||||
|
shell: 'msys2 {0}'
|
||||||
|
- name: 'msys2 mingw64'
|
||||||
|
os: 'windows-latest'
|
||||||
|
dx5: false
|
||||||
|
config: true
|
||||||
|
build-type: ${{ github.ref == 'refs/heads/master' && 'Release' || 'Debug' }}
|
||||||
|
mingw: true
|
||||||
|
werror: true
|
||||||
|
clang-tidy: true
|
||||||
|
msystem: 'mingw64'
|
||||||
|
msys-env: 'mingw-w64-x86_64'
|
||||||
|
shell: 'msys2 {0}'
|
||||||
|
- name: 'macOS'
|
||||||
|
os: 'macos-latest'
|
||||||
|
dx5: false
|
||||||
|
config: true
|
||||||
|
build-type: ${{ github.ref == 'refs/heads/master' && 'Release' || 'Debug' }}
|
||||||
|
brew: true
|
||||||
|
werror: true
|
||||||
|
clang-tidy: false
|
||||||
|
- name: 'Emscripten'
|
||||||
|
os: 'ubuntu-latest'
|
||||||
|
dx5: false
|
||||||
|
config: false
|
||||||
|
build-type: ${{ github.ref == 'refs/heads/master' && 'Release' || 'Debug' }}
|
||||||
|
emsdk: true
|
||||||
|
werror: true
|
||||||
|
clang-tidy: false
|
||||||
|
cmake-wrapper: 'emcmake'
|
||||||
steps:
|
steps:
|
||||||
- name: Setup vcvars
|
- name: Setup vcvars
|
||||||
if: ${{ !!matrix.msvc }}
|
if: ${{ !!matrix.msvc }}
|
||||||
@ -109,6 +175,22 @@ jobs:
|
|||||||
name: '${{ matrix.name }} ${{ matrix.build-type }}'
|
name: '${{ matrix.name }} ${{ matrix.build-type }}'
|
||||||
path: build/dist/isle-*
|
path: build/dist/isle-*
|
||||||
|
|
||||||
|
- name: Checkout uploadtool
|
||||||
|
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' && github.repository == 'isledecomp/isle-portable' }}
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
repository: 'probonopd/uploadtool'
|
||||||
|
path: 'uploadtool'
|
||||||
|
|
||||||
|
- name: Upload Continuous Release
|
||||||
|
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' && github.repository == 'isledecomp/isle-portable' }}
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
UPLOAD_KEY: ${{ secrets.UPLOAD_KEY }}
|
||||||
|
run: |
|
||||||
|
export UPLOADTOOL_SUFFIX="${{ matrix.name }}"
|
||||||
|
./uploadtool/upload.sh build/dist/isle-*
|
||||||
|
|
||||||
ncc:
|
ncc:
|
||||||
name: 'C++'
|
name: 'C++'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user