Skip to content

Commit

Permalink
Merge pull request #44 from kakakaya/release/v13
Browse files Browse the repository at this point in the history
v13
  • Loading branch information
kakakaya committed Feb 21, 2024
2 parents 58aeac7 + 5d32bd9 commit a54b316
Show file tree
Hide file tree
Showing 7 changed files with 935 additions and 675 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
name: Wails build
name: Wails Build

on:
push:
branches: [ "main" ]
tags:
- '*'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

env:
# Necessary for most environments as build failure can occur due to OOM issues
NODE_OPTIONS: "--max-old-space-size=4096"
Expand Down
37 changes: 37 additions & 0 deletions .github/workflows/wails-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Wails Test

on:
pull_request:
paths-ignore:
- 'docs/**'
push:
branches:
- main
paths-ignore:
- 'docs/**'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
test:
strategy:
matrix:
build:
- name: 'mazesoba-continent-linux-testbuild'
platform: 'linux/amd64'
os: 'ubuntu-latest'
runs-on: ${{ matrix.build.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Build wails
uses: dAppServer/wails-build-action@v2.2
id: build
with:
build-name: ${{ matrix.build.name }}
build-platform: ${{ matrix.build.platform }}
go-version: '1.22'

0 comments on commit a54b316

Please sign in to comment.