-
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'refs/heads/0.9.x' into 0.9.x_build_troubleshooting_2023…
…-12_sgt
- Loading branch information
Showing
5 changed files
with
251 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
name: Windows-CI | ||
|
||
# Controls when the action will run. | ||
on: | ||
release: | ||
types: | ||
- created | ||
- edited | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
# This workflow contains a single job called "build" | ||
build: | ||
# The type of runner that the job will run on | ||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- os: windows-2019 | ||
cmake-generator: VS2019Win64 | ||
enable-pie: 1 | ||
build-type: Release | ||
is-release: 1 | ||
- os: windows-2022 | ||
cmake-generator: VS2022Win64 | ||
enable-pie: 1 | ||
build-type: Debug | ||
is-release: 1 | ||
|
||
env: | ||
# Indicates the location of vcpkg | ||
VCPKG_ROOT: '${{ github.workspace }}/v' | ||
# Tells vcpkg where binary packages are stored. | ||
VCPKG_DEFAULT_BINARY_CACHE: '${{ github.workspace }}/vbincache' | ||
## Let's use GitHub Action cache as storage for the vcpkg Binary Caching feature. | ||
#VCPKG_BINARY_SOURCES: 'clear;x-gha,readwrite' | ||
VCPKG_DEFAULT_TRIPLET: x64-windows | ||
VCPKG_DEFAULT_HOST_TRIPLET: x64-windows | ||
PYTHONHOME: '${{ github.workspace }}/v/packages/python3_x64-windows/tools/python3' | ||
TAG_NAME: '${{ github.ref_name }}' | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Set env vars needed for vcpkg to leverage the GitHub Action cache as a storage | ||
# for Binary Caching. | ||
# Also process the `github.sha` value to produce the SHORT_SHA we'll need later | ||
- uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 #v6.4.1 | ||
with: | ||
script: | | ||
const git_sha = context.sha.substring(0, 7) | ||
core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || ''); | ||
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || ''); | ||
core.exportVariable('SHORT_SHA', git_sha); | ||
- name: Test tag name and short SHA | ||
run: | | ||
echo "${TAG_NAME}" | ||
echo "${SHORT_SHA}" | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- name: checkout | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1 | ||
|
||
- name: "Create directory '${{ env.VCPKG_DEFAULT_BINARY_CACHE }}'" | ||
run: mkdir -p $VCPKG_DEFAULT_BINARY_CACHE | ||
shell: bash | ||
|
||
- name: install-cmake | ||
uses: lukka/get-cmake@359fbae4b163fa01633e6de228fa7f2a31ab1fc7 #v3.26.1 | ||
with: | ||
cmakeVersion: 3.26.1 | ||
ninjaVersion: 1.11.1 | ||
|
||
# # Restore vcpkg from the GitHub Action cache service. Note that packages are restored by vcpkg's binary caching | ||
# # when it is being run afterward by CMake. | ||
# - name: restore-vcpkg | ||
# uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 #v3.3.1 | ||
# with: | ||
# # The first path is the location of vcpkg: it contains the vcpkg executable and data files, as long as the | ||
# # built package archives (aka binary cache) which are located by VCPKG_DEFAULT_BINARY_CACHE env var. | ||
# # The other paths starting with '!' are exclusions: they contain temporary files generated during the build of the installed packages. | ||
# path: | | ||
# ${{ env.VCPKG_ROOT }} | ||
# !${{ env.VCPKG_ROOT }}/buildtrees | ||
# !${{ env.VCPKG_ROOT }}/packages | ||
# !${{ env.VCPKG_ROOT }}/downloads | ||
# !${{ env.VCPKG_ROOT }}/installed | ||
# # The key is composed in a way that it gets properly invalidated whenever a different version of vcpkg is being used. | ||
# key: | | ||
# ${{ hashFiles( '.git/modules/vcpkg/HEAD' )}} | ||
|
||
- name: install-vcpkg | ||
#if: steps.cache.outputs.cache-hit != 'true' | ||
run: | | ||
git clone https://github.com/vegastrike/vcpkg-local.git ${{ env.VCPKG_ROOT }} | ||
${{ env.VCPKG_ROOT }}\bootstrap-vcpkg.bat -disableMetrics | ||
- name: run-build-script | ||
working-directory: ${{ github.workspace }} | ||
run: .\script\build.ps1 -Generator ${{ matrix.cmake-generator }} -EnablePIE ${{ matrix.enable-pie }} -BuildType ${{ matrix.build-type }} -IsRelease ${{ matrix.is-release }} -GitTag ${{ env.TAG_NAME }} -GitSha ${{ env.SHORT_SHA }} | ||
|
||
- name: Test | ||
working-directory: ${{ github.workspace }} | ||
env: | ||
GTEST_OUTPUT: xml | ||
GTEST_COLOR: 1 | ||
run: .\script\test.ps1 -Generator ${{ matrix.cmake-generator }} -EnablePIE ${{ matrix.enable-pie }} -BuildType ${{ matrix.build-type }} | ||
|
||
- name: Upload artifacts | ||
uses: skx/github-action-publish-binaries@44887b225ceca96efd8a912d39c09ad70312af31 # master | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
ARTIFACT_EXT: ${{ matrix.ARTIFACT_EXT }} | ||
with: | ||
path: "${{ github.workspace }}/**/*.zip" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
name: 'MacOS-CI' | ||
|
||
on: | ||
release: | ||
types: | ||
- created | ||
- edited | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
name: Build | ||
runs-on: ${{ matrix.os }} | ||
continue-on-error: true | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: | ||
#- macos-11 | ||
- macos-12 | ||
compiler: | ||
- clang | ||
- gcc | ||
homebrew-gl: | ||
- true | ||
# - false | ||
homebrew-al: | ||
- true | ||
- false | ||
|
||
steps: | ||
|
||
# The following dependencies are already present within macos-* images: | ||
# - clang (llvm) | ||
# - cmake | ||
# - expat | ||
# - gcc | ||
# - git | ||
# - jpeg | ||
# - libpng | ||
# - libvorbis | ||
# - python | ||
- name: Install dependencies using homebrew | ||
run: brew install boost-python3 gtk+3 gtkglext sdl | ||
|
||
# The following Apple-provided libraries are deprecated: | ||
# * OpenGL as of macOS 10.14 | ||
# * GLUT as of macOS 10.9 | ||
- name: Optionally install homebrewed OpenGL and GLUT | ||
if: ${{ matrix.homebrew-gl }} | ||
run: | | ||
brew install mesa mesa-glu freeglut | ||
ln -s /usr/local/include/GL /usr/local/include/OpenGL | ||
ln -s /usr/local/include/GL /usr/local/include/GLUT | ||
# ln -s /usr/local/lib/libGL.dylib /usr/local/lib/libOpenGL.dylib | ||
# find /usr/local/lib/ -iname '*gl*.dylib' | ||
|
||
# The Apple-provided OpenAL is deprecated as of macOS 10.15 | ||
- name: Optionally install homebrewed OpenAL | ||
if: ${{ matrix.homebrew-al }} | ||
run: brew install openal-soft | ||
|
||
- name: Check out repository | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1 | ||
with: | ||
fetch-depth: 2 | ||
submodules: false | ||
|
||
- name: Extract tag name and short SHA | ||
shell: bash | ||
run: | | ||
echo "TAG_NAME=$(echo ${GITHUB_REF#refs/tags/} | sed 's/\//_/g')" >> $GITHUB_ENV | ||
echo "SHORT_SHA=`git rev-parse --short HEAD`" >> $GITHUB_ENV | ||
- name: Test tag name and short SHA | ||
run: | | ||
echo "${TAG_NAME}" | ||
echo "${SHORT_SHA}" | ||
- name: Build it | ||
env: | ||
MY_OS_NAME: macos | ||
COMPILER: ${{ matrix.compiler }} | ||
FLAGS: -DCMAKE_FIND_FRAMEWORK=LAST | ||
OPENALDIR: "/usr/local/opt/openal-soft" | ||
IS_RELEASE: 1 | ||
run: script/cibuild $FLAGS | ||
|
||
- name: Test | ||
working-directory: ${{github.workspace}}/build | ||
env: | ||
GTEST_OUTPUT: xml | ||
GTEST_COLOR: 1 | ||
run: ctest -V | ||
|
||
- name: Upload the artifacts | ||
uses: skx/github-action-publish-binaries@44887b225ceca96efd8a912d39c09ad70312af31 # master | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
ARTIFACT_EXT: ${{ matrix.ARTIFACT_EXT }} | ||
with: | ||
args: "packages/*.${{ matrix.ARTIFACT_EXT }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters