fix: screen.set_size
executes on the main thread (closes #84)
#85
Workflow file for this run
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
name: Build artifacts | |
on: | |
push: | |
tags: | |
- '*' | |
workflow_dispatch: | |
jobs: | |
linux-x86_64: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: restore zig-cache | |
id: cache-zig-restore | |
uses: actions/cache/restore@v3 | |
with: | |
path: | | |
zig-cache | |
key: ${{ runner.os }}-zig-cache-${{ github.run_id }} | |
restore-keys: | | |
${{ runner.os }}-zig-cache | |
- name: build seamstress | |
run: | | |
bash ci/ubuntu.sh | |
- name: save zig-cache | |
id: cache-zig-save | |
uses: actions/cache/save@v3 | |
with: | |
path: | | |
zig-cache | |
key: ${{ runner.os }}-zig-cache-${{ github.run_id }} | |
- name: zip artifact | |
run: | | |
cd zig-out/ && tar -czvf ../seamstress-linux-x86_64-${{ github.ref_name }}.tar.gz . | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: linux-x86_64-${{ github.ref_name }} | |
path: | | |
./*.tar.gz | |
macos-x86_64: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: Homebrew/actions/setup-homebrew@master | |
- name: restore zig-cache | |
id: cache-zig-restore | |
uses: actions/cache/restore@v3 | |
with: | |
path: | | |
zig-cache | |
key: ${{ runner.os }}-zig-cache-${{ github.run_id }} | |
restore-keys: | | |
${{ runner.os }}-zig-cache | |
- name: build seamstress | |
run: | | |
bash ci/macos-11.sh | |
- name: save zig-cache | |
id: cache-zig-save | |
uses: actions/cache/save@v3 | |
with: | |
path: | | |
zig-cache | |
key: ${{ runner.os }}-zig-cache-${{ github.run_id }} | |
- name: zip artifact | |
run: | | |
cd zig-out/ && zip -r9 ../seamstress-macos-x86_64-${{ github.ref_name }}.zip . | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: macos-x86_64-${{ github.ref_name }} | |
path: | | |
./*.zip | |
release: | |
runs-on: ubuntu-latest | |
needs: [macos-x86_64,linux-x86_64] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/download-artifact@v3 | |
- uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
draft: true | |
files: | | |
./macos-x86_64-${{ github.ref_name }}/*.zip | |
./linux-x86_64-${{ github.ref_name }}/*.tar.gz |