Skip to content

Commit

Permalink
DRTVWR-578: promote actions branch to master
Browse files Browse the repository at this point in the history
  • Loading branch information
nat-goodspeed authored Oct 25, 2023
2 parents e2f11fa + d7afe27 commit 12ec7fa
Show file tree
Hide file tree
Showing 4 changed files with 62 additions and 7 deletions.
12 changes: 12 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: 2
updates:

- package-ecosystem: github-actions
directory: /
schedule:
interval: monthly

- package-ecosystem: pip
directory: /
schedule:
interval: monthly
18 changes: 18 additions & 0 deletions .github/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
changelog:
exclude:
labels:
- ignore-for-release
authors:
- dependabot
categories:
- title: Breaking Changes 🛠
labels:
- semver-major
- breaking-change
- title: New Features 🎉
labels:
- semver-minor
- enhancement
- title: Other Changes
labels:
- '*'
25 changes: 25 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build
on: [push]
jobs:
build:
strategy:
matrix:
os: [windows-2022, macos-11, ubuntu-22.04]
addrsize: ["64"]
include:
- os: windows-2022
addrsize: "32"
continue-on-error: false
runs-on: ${{ matrix.os }}
steps:
- uses: secondlife/action-autobuild@v3
with:
addrsize: ${{ matrix.addrsize }}
release:
needs: build
runs-on: [ubuntu-latest]
if: startsWith(github.ref, 'refs/tags/v')
steps:
- uses: secondlife/action-autobuild-release@v1
with:
public: true
14 changes: 7 additions & 7 deletions build-cmd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,6 @@ echo "1.1.0" > "$stage/VERSION.txt"

case "$AUTOBUILD_PLATFORM" in
windows* | darwin64)

mkdir -p "$stage/js"
mkdir -p "$stage/LICENSES"

cp "${SOURCE_DIR}/src/CubemapToEquirectangular.js" "$stage/js/"

cp "${SOURCE_DIR}/LICENSE" "$stage/LICENSES/CUBEMAPTOEQUIRECTANGULAR_LICENSE.txt"
;;

"linux")
Expand All @@ -49,3 +42,10 @@ case "$AUTOBUILD_PLATFORM" in
"linux64")
;;
esac

mkdir -p "$stage/js"
mkdir -p "$stage/LICENSES"

cp "${SOURCE_DIR}/src/CubemapToEquirectangular.js" "$stage/js/"

cp "${SOURCE_DIR}/LICENSE" "$stage/LICENSES/CUBEMAPTOEQUIRECTANGULAR_LICENSE.txt"

0 comments on commit 12ec7fa

Please sign in to comment.