-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update CI to use Godot w/Bitcoin module
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,14 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
build: [macos, windows, linux] | ||
include: | ||
- build: linux | ||
godot-bin: 'godot.linuxbsd.editor.x86_64.mono' | ||
- build: macos | ||
godot-bin: 'godot.macos.editor.universal' | ||
# Windows build runs on Ubuntu | ||
- build: windows | ||
godot-bin: 'godot.linuxbsd.editor.x86_64.mono' | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
@@ -24,8 +32,24 @@ jobs: | |
use-dotnet: false | ||
include-templates: true | ||
|
||
- name: Download Godot w/Bitcoin module | ||
uses: robinraju/[email protected] | ||
with: | ||
repository: LayerTwo-Labs/godot-bitcoin-module | ||
tag: v4.2.2-bitcoin | ||
filename: ${{ matrix.godot-bin }} | ||
|
||
# FIXME: remove | ||
- name: show files | ||
run: | | ||
ls | ||
echo $GODOT | ||
# FIXME: unknown binary location | ||
- name: Verify Setup | ||
run: | | ||
chmod +x ${{ matrix.godot-bin }} | ||
mv ${{ matrix.godot-bin }} ../godot | ||
godot --version | ||
- name: Import certificate to Keychain | ||
|