Make all graded weapons use copy-from [Part 1 Swords and Blades] (#66… #6
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: "Experimental Release" | |
concurrency: release | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- '.github/workflows/release.yml' | |
- 'android/**' | |
- 'build-data/**' | |
- 'cataclysm-launcher' | |
- 'data/**' | |
- 'doc/**' | |
- 'gfx/**' | |
- 'lang/po/*.po' | |
- 'LICENSE*' | |
- 'Makefile' | |
- 'README*' | |
- 'src/**' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
release: | |
name: Create Release | |
runs-on: ubuntu-latest | |
permissions: write-all | |
outputs: | |
timestamp: ${{ steps.get-timestamp.outputs.time }} | |
steps: | |
- name: Get build timestamp | |
id: get-timestamp | |
run: | | |
echo "time=$(/bin/date -u "+%Y-%m-%d-%H%M")" >> $GITHUB_OUTPUT | |
- name: Generate environmental variables | |
id: generate_env_vars | |
run: | | |
echo "tag_name=cdda-experimental-${{ steps.get-timestamp.outputs.time }}" >> $GITHUB_OUTPUT | |
echo "release_name=Cataclysm-DDA experimental build ${{ steps.get-timestamp.outputs.time }}" >> $GITHUB_OUTPUT | |
- uses: actions/checkout@v3 | |
- run: | | |
gh release create ${{ steps.generate_env_vars.outputs.tag_name }} --generate-notes --prerelease --title "${{ steps.generate_env_vars.outputs.release_name }}" | |
builds: | |
needs: release | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: Windows Tiles x64 MSVC | |
artifact: windows-tiles-x64-msvc | |
arch: x64 | |
os: windows-2019 | |
mxe: none | |
ext: zip | |
content: application/zip | |
sound: 0 | |
- name: Windows Tiles Sounds x64 MSVC | |
artifact: windows-tiles-sounds-x64-msvc | |
arch: x64 | |
os: windows-2019 | |
mxe: none | |
ext: zip | |
content: application/zip | |
sound: 1 | |
- name: Windows Tiles x64 | |
mxe: x86_64 | |
artifact: windows-tiles-x64 | |
os: ubuntu-latest | |
ext: zip | |
content: application/zip | |
sound: 0 | |
- name: Windows Tiles Sounds x64 | |
mxe: x86_64 | |
artifact: windows-tiles-sounds-x64 | |
os: ubuntu-latest | |
ext: zip | |
content: application/zip | |
sound: 1 | |
- name: Linux Tiles x64 | |
os: ubuntu-20.04 | |
mxe: none | |
android: none | |
tiles: 1 | |
sound: 0 | |
artifact: linux-tiles-x64 | |
ext: tar.gz | |
content: application/gzip | |
- name: Linux Tiles Sounds x64 | |
os: ubuntu-20.04 | |
mxe: none | |
android: none | |
tiles: 1 | |
sound: 1 | |
artifact: linux-tiles-sounds-x64 | |
ext: tar.gz | |
content: application/gzip | |
- name: Linux Curses x64 | |
os: ubuntu-20.04 | |
mxe: none | |
android: none | |
tiles: 0 | |
sound: 0 | |
artifact: linux-curses-x64 | |
ext: tar.gz | |
content: application/gzip | |
- name: macOS Curses Universal Binary (x64 and arm64) | |
os: macos-12 | |
mxe: none | |
tiles: 0 | |
sound: 0 | |
artifact: osx-curses-universal | |
ext: dmg | |
content: application/x-apple-diskimage | |
- name: macOS Tiles Universal Binary (x64 and arm64) | |
os: macos-12 | |
mxe: none | |
tiles: 1 | |
sound: 0 | |
artifact: osx-tiles-universal | |
ext: dmg | |
content: application/x-apple-diskimage | |
- name: Android x64 | |
os: ubuntu-latest | |
mxe: none | |
android: arm64 | |
artifact: android-x64 | |
ext: apk | |
content: application/apk | |
- name: Android x32 | |
os: ubuntu-latest | |
mxe: none | |
android: arm32 | |
artifact: android-x32 | |
ext: apk | |
content: application/apk | |
- name: Android Bundle | |
os: ubuntu-latest | |
mxe: none | |
android: bundle | |
artifact: android-bundle | |
ext: aab | |
content: application/aap | |
name: ${{ matrix.name }} | |
runs-on: ${{ matrix.os }} | |
permissions: write-all | |
env: | |
ZSTD_CLEVEL: 17 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Get soundpack | |
if: matrix.sound == 1 | |
run: | | |
git clone --depth=1 --shallow-submodules --recurse-submodules https://github.com/Fris0uman/CDDA-Soundpacks '${{ github.workspace }}/CDDA-Soundpacks' | |
mv '${{ github.workspace }}/CDDA-Soundpacks/sound/CC-Sounds' '${{ github.workspace }}/data/sound' | |
- name: Install dependencies (windows msvc) (0/3) | |
if: runner.os == 'Windows' | |
uses: lukka/get-cmake@latest | |
- name: Install dependencies (windows msvc) (1/3) | |
if: runner.os == 'Windows' | |
uses: microsoft/[email protected] | |
- name: Install dependencies (windows msvc) (2/3) | |
if: runner.os == 'Windows' | |
uses: lukka/run-vcpkg@v11 | |
id: runvcpkg | |
with: | |
vcpkgDirectory: '${{ runner.workspace }}/b/vcpkg' | |
vcpkgGitCommitId: '5b1214315250939257ef5d62ecdcbca18cf4fb1c' | |
- name: Install dependencies (windows msvc) (3/3) | |
if: runner.os == 'Windows' | |
run: | | |
vcpkg integrate install --vcpkg-root '${{ runner.workspace }}\b\vcpkg' | |
- name: Install dependencies (windows mxe) | |
if: matrix.mxe != 'none' | |
run: | | |
sudo apt install gettext | |
- name: Install MXE | |
if: matrix.mxe != 'none' | |
run: | | |
curl -L -o mxe-${{ matrix.mxe }}.tar.xz https://github.com/BrettDong/MXE-GCC/releases/download/mxe-sdl-2-0-20/mxe-${{ matrix.mxe }}.tar.xz | |
curl -L -o mxe-${{ matrix.mxe }}.tar.xz.sha256 https://github.com/BrettDong/MXE-GCC/releases/download/mxe-sdl-2-0-20/mxe-${{ matrix.mxe }}.tar.xz.sha256 | |
shasum -a 256 -c ./mxe-${{ matrix.mxe }}.tar.xz.sha256 | |
sudo tar xJf mxe-${{ matrix.mxe }}.tar.xz -C /opt | |
curl -L -o SDL2-devel-2.26.2-mingw.tar.gz https://github.com/libsdl-org/SDL/releases/download/release-2.26.2/SDL2-devel-2.26.2-mingw.tar.gz | |
shasum -a 256 -c ./build-scripts/SDL2-devel-2.26.2-mingw.tar.gz.sha256 | |
sudo tar -xzf SDL2-devel-2.26.2-mingw.tar.gz -C /opt/mxe/usr/${{ matrix.mxe }}-w64-mingw32.static.gcc12 --strip-components=2 SDL2-2.26.2/${{ matrix.mxe }}-w64-mingw32 | |
curl -L -o libbacktrace-${{ matrix.mxe }}-w64-mingw32.tar.gz https://github.com/Qrox/libbacktrace/releases/download/2020-01-03/libbacktrace-${{ matrix.mxe }}-w64-mingw32.tar.gz | |
shasum -a 256 -c ./build-scripts/libbacktrace-${{ matrix.mxe }}-w64-mingw32-sha256 | |
sudo tar -xzf libbacktrace-${{ matrix.mxe }}-w64-mingw32.tar.gz --exclude=LICENSE -C /opt/mxe/usr/${{ matrix.mxe }}-w64-mingw32.static.gcc12 | |
- name: Install dependencies (Linux) | |
if: runner.os == 'Linux' && matrix.mxe == 'none' && matrix.android == 'none' | |
run: | | |
sudo apt-get update | |
sudo apt-get install libncursesw5-dev libsdl2-dev libsdl2-ttf-dev libsdl2-image-dev \ | |
libsdl2-mixer-dev libpulse-dev ccache gettext parallel | |
- name: Install runtime dependencies (mac) | |
if: runner.os == 'macOS' | |
uses: BrettDong/setup-sdl2-frameworks@v1 | |
with: | |
sdl2: latest | |
sdl2-ttf: latest | |
sdl2-image: latest | |
sdl2-mixer: latest | |
- name: Install build dependencies (mac) | |
if: runner.os == 'macOS' | |
run: | | |
HOMEBREW_NO_AUTO_UPDATE=yes HOMEBREW_NO_INSTALL_CLEANUP=yes brew install gettext ccache parallel | |
pip3 install mac_alias==2.2.0 dmgbuild==1.4.2 biplist | |
- name: Create VERSION.TXT | |
shell: bash | |
run: | | |
cat >VERSION.txt <<EOL | |
build type: ${{ matrix.artifact }} | |
build number: ${{ needs.release.outputs.timestamp }} | |
commit sha: ${{ github.sha }} | |
commit url: https://github.com/${{ github.repository }}/commit/${{ github.sha }} | |
EOL | |
- name: Compile translations (windows) | |
if: runner.os == 'Windows' | |
shell: bash | |
run: | | |
lang/compile_mo.sh all | |
- name: Build CDDA (linux) | |
if: runner.os == 'Linux' && matrix.mxe == 'none' && matrix.android == 'none' | |
run: | | |
make -j$((`nproc`+0)) TILES=${{ matrix.tiles }} SOUND=${{ matrix.tiles }} RELEASE=1 LOCALIZE=1 LANGUAGES=all BACKTRACE=0 PCH=0 bindist | |
mv cataclysmdda-0.F.tar.gz cdda-${{ matrix.artifact }}-${{ needs.release.outputs.timestamp }}.tar.gz | |
- name: Build CDDA (windows mxe) | |
if: matrix.mxe != 'none' | |
env: | |
PLATFORM: /opt/mxe/usr/bin/${{ matrix.mxe }}-w64-mingw32.static.gcc12- | |
run: | | |
make -j$((`nproc`+0)) CROSS="${PLATFORM}" TILES=1 SOUND=1 RELEASE=1 LOCALIZE=1 LANGUAGES=all BACKTRACE=1 PCH=0 bindist | |
mv cataclysmdda-0.F.zip cdda-${{ matrix.artifact }}-${{ needs.release.outputs.timestamp }}.zip | |
- name: Build CDDA (windows msvc) | |
if: runner.os == 'Windows' | |
env: | |
# Enable pretty backtraces | |
BACKTRACE: 1 | |
CDDA_RELEASE_BUILD: 1 | |
VCPKG_OVERLAY_TRIPLETS: ${{ github.workspace }}\.github\vcpkg_triplets | |
run: | | |
msbuild -m -p:Configuration=Release -p:Platform=${{ matrix.arch }} "-target:Cataclysm-vcpkg-static;JsonFormatter-vcpkg-static" msvc-full-features\Cataclysm-vcpkg-static.sln | |
.\build-scripts\windist.ps1 | |
mv cataclysmdda-0.F.zip cdda-${{ matrix.artifact }}-${{ needs.release.outputs.timestamp }}.zip | |
- name: Build CDDA (osx) | |
if: runner.os == 'macOS' | |
run: | | |
make -j3 TILES=${{ matrix.tiles }} SOUND=${{ matrix.tiles }} RELEASE=1 LOCALIZE=1 LANGUAGES=all BACKTRACE=0 PCH=0 USE_HOME_DIR=1 FRAMEWORK=1 UNIVERSAL_BINARY=1 dmgdist | |
mv Cataclysm.dmg cdda-${{ matrix.artifact }}-${{ needs.release.outputs.timestamp }}.dmg | |
- name: Set up JDK 8 (android) | |
if: runner.os == 'Linux' && matrix.android != 'none' && matrix.mxe == 'none' | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
- name: Setup Build and Dependencies (android) | |
if: runner.os == 'Linux' && matrix.android != 'none' && matrix.mxe == 'none' | |
run: | | |
sudo apt-get update | |
sudo apt-get install gettext | |
- name: Build CDDA (android) | |
if: runner.os == 'Linux' && matrix.android != 'none' && matrix.mxe == 'none' | |
working-directory: ./android | |
run: | | |
echo "${{ secrets.KEYSTORE }}" > release.keystore.asc | |
gpg -d --passphrase "${{ secrets.KEYSTORE_PASSWORD }}" --batch release.keystore.asc > app/release.keystore | |
echo "${{ secrets.KEYSTORE_PROPERTIES }}" > keystore.properties.asc | |
gpg -d --passphrase "${{ secrets.KEYSTORE_PASSWORD }}" --batch keystore.properties.asc > keystore.properties | |
export UPSTREAM_BUILD_NUMBER="$((11581 + ${{ github.run_number }}))" | |
chmod +x gradlew | |
if [ ${{ matrix.android }} = arm64 ] | |
then | |
./gradlew -Pj=$((`nproc`+0)) -Pabi_arm_32=false assembleExperimentalRelease | |
mv ./app/build/outputs/apk/experimental/release/*.apk ../cdda-${{ matrix.artifact }}-${{ needs.release.outputs.timestamp }}.apk | |
elif [ ${{ matrix.android }} = arm32 ] | |
then | |
./gradlew -Pj=$((`nproc`+0)) -Pabi_arm_64=false assembleExperimentalRelease | |
mv ./app/build/outputs/apk/experimental/release/*.apk ../cdda-${{ matrix.artifact }}-${{ needs.release.outputs.timestamp }}.apk | |
elif [ ${{ matrix.android }} = bundle ] | |
then | |
./gradlew -Pj=$((`nproc`+0)) bundleExperimentalRelease | |
mv ./app/build/outputs/bundle/experimentalRelease/*.aab ../cdda-${{ matrix.artifact }}-${{ needs.release.outputs.timestamp }}.aab | |
fi | |
- run: | | |
gh release upload cdda-experimental-${{ needs.release.outputs.timestamp }} cdda-${{ matrix.artifact }}-${{ needs.release.outputs.timestamp }}.${{ matrix.ext }} | |
- name: Trigger GitHub pages rebuild | |
shell: bash | |
run: | | |
curl --fail --request POST \ | |
--url https://api.github.com/repos/${{ github.repository }}/pages/builds \ | |
--header "Authorization: Bearer ${{ secrets.USER_TOKEN }}" \ | |
--header "Accept: application/vnd.github.v3+json" |