Build #517
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
name: Build | |
on: | |
push: | |
repository_dispatch: | |
types: [run_build] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build-linux: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v2 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y software-properties-common | |
sudo apt-get install -y cmake cmake-data git build-essential autoconf automake libtool texinfo bison flex pkg-config | |
- name: Clone | |
run: | | |
export REV=dirty-$(git describe --always) | |
git clone https://github.com/vitasdk/buildscripts.git | |
chmod +x *.sh | |
- name: Build | |
run: | | |
cd buildscripts | |
git config --global user.email "builds@travis-ci.com" | |
git config --global user.name "Travis CI" | |
mkdir build | |
cd build | |
cmake .. | |
make -j$(nproc) tarball | |
- name: Upload artifacts | |
if: ${{ success() }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: vitasdk-linux | |
path: buildscripts/build/*.tar.bz2 | |
- uses: svenstaro/upload-release-action@v2 | |
if: contains(github.ref,'refs/heads/master') | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: buildscripts/build/*.tar.bz2 | |
overwrite: true | |
file_glob: true | |
tag: master-linux-v2.${{github.run_number}} | |
release_name: master-linux-v2.${{github.run_number}} | |
build-macos: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v2 | |
- name: Install dependencies | |
run: | | |
brew install autoconf automake libtool | |
- name: Clone | |
run: | | |
export REV=dirty-$(git describe --always) | |
git clone https://github.com/vitasdk/buildscripts.git | |
chmod +x *.sh | |
- name: Build | |
run: | | |
cd buildscripts | |
git config --global user.email "builds@travis-ci.com" | |
git config --global user.name "Travis CI" | |
mkdir build | |
cd build | |
cmake .. | |
make -j$(nproc) tarball | |
- name: Upload artifacts | |
if: ${{ success() }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: vitasdk-macos | |
path: buildscripts/build/*.tar.bz2 | |
- uses: svenstaro/upload-release-action@v2 | |
if: contains(github.ref,'refs/heads/master') | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: buildscripts/build/*.tar.bz2 | |
overwrite: true | |
file_glob: true | |
tag: master-osx-v2.${{github.run_number}} | |
release_name: master-osx-v2.${{github.run_number}} | |
build-windows: | |
# TODO match as build-linux | |
# we don't know reason yet, mingw build was failed when libelf compille. | |
# mingw output have to be static linking, and that this reason, we are able to use 22.04 in here | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v2 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y software-properties-common | |
sudo apt-get install -y cmake cmake-data git build-essential autoconf automake libtool texinfo bison flex pkg-config g++-mingw-w64 | |
- name: Clone | |
run: | | |
export REV=dirty-$(git describe --always) | |
git clone https://github.com/vitasdk/buildscripts.git | |
chmod +x *.sh | |
- name: Build | |
run: | | |
cd buildscripts | |
git config --global user.email "builds@travis-ci.com" | |
git config --global user.name "Travis CI" | |
unset CXX | |
unset CC | |
mkdir build | |
cd build | |
cmake .. -DCMAKE_TOOLCHAIN_FILE=toolchain-x86_64-w64-mingw32.cmake | |
make -j$(nproc) tarball | |
- name: Upload artifacts | |
if: ${{ success() }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: vitasdk-windows | |
path: buildscripts/build/*.tar.bz2 | |
- uses: svenstaro/upload-release-action@v2 | |
if: contains(github.ref,'refs/heads/master') | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: buildscripts/build/*.tar.bz2 | |
overwrite: true | |
file_glob: true | |
tag: master-win-v2.${{github.run_number}} | |
release_name: master-win-v2.${{github.run_number}} |