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 6ddf04f + 9165e47 commit 0a9187f
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 7 deletions.
7 changes: 7 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2
updates:

- package-ecosystem: github-actions
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
8 changes: 1 addition & 7 deletions build-cmd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ build=${AUTOBUILD_BUILD_ID:=0}
echo "1.0" > "$stage/VERSION.txt"

case "$AUTOBUILD_PLATFORM" in
windows* | darwin64)
windows* | darwin64 | linux*)

mkdir -p "$stage/js"
mkdir -p "$stage/LICENSES"
Expand All @@ -43,10 +43,4 @@ case "$AUTOBUILD_PLATFORM" in

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

"linux")
;;

"linux64")
;;
esac

0 comments on commit 0a9187f

Please sign in to comment.