-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Try to include the binaries in the release
- Loading branch information
Showing
3 changed files
with
65 additions
and
52 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 |
---|---|---|
|
@@ -5,29 +5,58 @@ jobs: | |
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Setup | ||
- name: Restore cache | ||
id: cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/quicklisp/ | ||
~/.wine/ | ||
~/trial-deproyment/ | ||
key: ${{ runner.os }} | ||
restore-keys: ${{ runner.os }} | ||
- name: Install packages | ||
run: | | ||
git config --global user.name "CI" | ||
git config --global user.email "[email protected]" | ||
sudo apt-get -qq install sbcl curl fontforge imagemagick inkscape | ||
sudo apt-get -qq install wine curl fontforge imagemagick inkscape --no-install-recommends | ||
- name: Install env | ||
if: steps.cache.outputs.cache-hit != 'true' | ||
run: | | ||
git clone --depth 1 https://gitea.tymoon.eu/Shirakumo/trial-deployment.git ~/trial-deployment | ||
curl -o ~/quicklisp.lisp https://beta.quicklisp.org/quicklisp.lisp | ||
sbcl --load ~/quicklisp.lisp \ | ||
~/trial-deployment/sbcl-lin \ | ||
--load ~/quicklisp.lisp \ | ||
--eval '(quicklisp-quickstart:install)' \ | ||
--eval '(ql-util:without-prompting (ql:add-to-init-file))' \ | ||
--eval '(ql:quickload :shasht)' \ | ||
--eval '(ql:quickload :clip)' \ | ||
--eval '(ql:quickload :pathname-utils)' \ | ||
--quit | ||
~/trial-deployment/sbcl-win \ | ||
--load ~/quicklisp.lisp \ | ||
--eval '(quicklisp-quickstart:install)' \ | ||
--eval '(ql-util:without-prompting (ql:add-to-init-file))' \ | ||
--eval '(ql:quickload :shasht)' \ | ||
--eval '(ql:quickload :clip)' \ | ||
--eval '(ql:quickload :pathname-utils)' \ | ||
--quit | ||
- uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/quicklisp/ | ||
key: ${{ runner.os }} | ||
restore-keys: ${{ runner.os }} | ||
- uses: actions/checkout@v2 | ||
- name: Rebuild | ||
run: | | ||
./compile.lisp all | ||
~/trial-deployment/sbcl-lin \ | ||
--noinform \ | ||
--disable-debugger \ | ||
--eval "(ql:quickload '(clip shasht pathname-utils) :silent T)" \ | ||
--load "compile.lisp" \ | ||
--eval '(promptfont-compiler::dump)' | ||
~/trial-deployment/sbcl-win \ | ||
--noinform \ | ||
--disable-debugger \ | ||
--eval "(ql:quickload '(clip shasht pathname-utils) :silent T)" \ | ||
--load "compile.lisp" \ | ||
--eval '(promptfont-compiler::dump)' | ||
./promptfont.run all | ||
- name: Upload artifact | ||
uses: actions/upload-artifact@v1 | ||
with: | ||
|
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 |
---|---|---|
@@ -1,18 +1,6 @@ | ||
*.sfd-* | ||
index.html | ||
chars.txt | ||
promptfont.css | ||
promptfont.ttf | ||
promptfont.otf | ||
promptfont.afm | ||
promptfont.txt | ||
promptfont.h | ||
promptfont.cs | ||
promptfont.py | ||
promptfont.lisp | ||
promptfont.lua | ||
promptfont.rs | ||
promptfont.gd | ||
promptfont-compiler.* | ||
promptfont.* | ||
*.png | ||
*.zip |
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