wip #19
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: | |
env: | |
BUILD_TYPE: Release | |
SK_VERSION: nover | |
jobs: | |
toolset: | |
runs-on: ubuntu-22.04 | |
env: | |
CC: gcc-12 | |
CXX: g++-12 | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
fetch-depth: 0 | |
- name: Configure stuff | |
run: | | |
mkdir ${{github.workspace}}/build | |
cd ${{github.workspace}}/build | |
cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/tmp .. | |
echo "SK_VERSION=$(cat version)" >> $GITHUB_ENV | |
- name: Build | |
working-directory: ${{github.workspace}}/build | |
run: cmake --build . -j 6 | |
- name: Install | |
working-directory: ${{github.workspace}}/build | |
run: | | |
cmake --build . --target install | |
cd ../tmp | |
mv ../LICENSE . | |
mv ../README.md . | |
tar -cvaf ../Insomnia-v${{env.SK_VERSION}}-linux-amd64.tar.xz . | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Insomnia-linux-amd64 | |
path: ${{github.workspace}}/Insomnia-v${{env.SK_VERSION}}-linux-amd64.tar.xz | |
retention-days: 5 | |
build-widle: | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
fetch-depth: 0 | |
- name: Configure stuff | |
run: | | |
choco install ninja | |
mkdir ${{github.workspace}}/build | |
cd ${{github.workspace}}/build | |
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=${{github.workspace}} .. | |
echo "SK_VERSION=$(Get-Content -Path ./version)" >> $env:GITHUB_ENV | |
env: | |
CC: clang | |
CXX: clang++ | |
- name: Build | |
working-directory: ${{github.workspace}}/build | |
run: cmake --build . -j 6 | |
- name: Install | |
run: | | |
cmake --build build --target install | |
copy LICENSE bin/LICENSE | |
copy README.md bin/README.md | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Insomnia-v${{env.SK_VERSION}}-win64 | |
path: ${{github.workspace}}/bin | |
retention-days: 5 |