gpu-dawn: CI: publish linux-x86_65 binary releases
Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
parent
9126a3211b
commit
ceed8f0621
1 changed files with 32 additions and 33 deletions
65
gpu-dawn/.github/workflows/ci.yml
vendored
65
gpu-dawn/.github/workflows/ci.yml
vendored
|
|
@ -5,39 +5,38 @@ on:
|
||||||
types:
|
types:
|
||||||
- completed
|
- completed
|
||||||
jobs:
|
jobs:
|
||||||
# TODO(build-system): enable x86 Linux CI here, dependency cycle in build.zig
|
x86_64-linux:
|
||||||
# x86_64-linux:
|
runs-on: ubuntu-latest
|
||||||
# runs-on: ubuntu-latest
|
# We want to run on external PRs, but not on our own internal PRs as they'll be run by the push
|
||||||
# # We want to run on external PRs, but not on our own internal PRs as they'll be run by the push
|
# to the branch.
|
||||||
# # to the branch.
|
if: github.event.workflow_run.conclusion == 'success' && (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository)
|
||||||
# if: github.event.workflow_run.conclusion == 'success' && (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository)
|
steps:
|
||||||
# steps:
|
- name: Checkout
|
||||||
# - name: Checkout
|
uses: actions/checkout@v2
|
||||||
# uses: actions/checkout@v2
|
- name: Setup Zig
|
||||||
# - name: Setup Zig
|
run: |
|
||||||
# run: |
|
sudo apt install xz-utils
|
||||||
# sudo apt install xz-utils
|
sudo sh -c 'wget -c https://ziglang.org/builds/zig-linux-x86_64-0.10.0-dev.670+e1a535360.tar.xz -O - | tar -xJ --strip-components=1 -C /usr/local/bin'
|
||||||
# sudo sh -c 'wget -c https://ziglang.org/builds/zig-linux-x86_64-0.10.0-dev.670+e1a535360.tar.xz -O - | tar -xJ --strip-components=1 -C /usr/local/bin'
|
- name: Clone mach-glfw
|
||||||
# - name: Clone mach-glfw
|
run: rm libs/mach-glfw && git clone https://github.com/hexops/mach-glfw libs/mach-glfw
|
||||||
# run: rm libs/mach-glfw && git clone https://github.com/hexops/mach-glfw libs/mach-glfw
|
- name: install (debug)
|
||||||
# - name: install (debug)
|
run: zig build install -Dfrom-source=true
|
||||||
# run: zig build install -Dfrom-source=true
|
- name: upload (debug)
|
||||||
# - name: upload (debug)
|
run: |
|
||||||
# run: |
|
mv zig-out/lib/libdawn.a zig-out/lib/libdawn_linux-x86_64_debug.a
|
||||||
# mv zig-out/lib/libdawn.a zig-out/lib/libdawn_linux-x86_64_debug.a
|
gzip -9 zig-out/lib/libdawn_linux-x86_64_debug.a
|
||||||
# gzip -9 zig-out/lib/libdawn_linux-x86_64_debug.a
|
gh release upload "release-$(git rev-parse --short HEAD)" zig-out/lib/libdawn_linux-x86_64_debug.a.gz
|
||||||
# gh release upload "release-$(git rev-parse --short HEAD)" zig-out/lib/libdawn_linux-x86_64_debug.a.gz
|
env:
|
||||||
# env:
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
- name: install (release-fast)
|
||||||
# - name: install (release-fast)
|
run: zig build install -Dfrom-source=true -Drelease-fast=true
|
||||||
# run: zig build install -Dfrom-source=true -Drelease-fast=true
|
- name: upload (release-fast)
|
||||||
# - name: upload (release-fast)
|
run: |
|
||||||
# run: |
|
mv zig-out/lib/libdawn.a zig-out/lib/libdawn_linux-x86_64_release-fast.a
|
||||||
# mv zig-out/lib/libdawn.a zig-out/lib/libdawn_linux-x86_64_release-fast.a
|
gzip -9 zig-out/lib/libdawn_linux-x86_64_release-fast.a
|
||||||
# gzip -9 zig-out/lib/libdawn_linux-x86_64_release-fast.a
|
gh release upload "release-$(git rev-parse --short HEAD)" zig-out/lib/libdawn_linux-x86_64_release-fast.a.gz
|
||||||
# gh release upload "release-$(git rev-parse --short HEAD)" zig-out/lib/libdawn_linux-x86_64_release-fast.a.gz
|
env:
|
||||||
# env:
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
# TODO(build-system): enable windows CI here once gpu-dawn builds under Windows
|
# TODO(build-system): enable windows CI here once gpu-dawn builds under Windows
|
||||||
# x86_64-windows:
|
# x86_64-windows:
|
||||||
# runs-on: windows-latest
|
# runs-on: windows-latest
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue