gpu-dawn: disable aarch64-macos / x86_64-linux CI runners for now

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2022-02-11 17:45:14 -07:00 committed by Stephen Gutekanst
parent c396c27b2b
commit 5e4bff902b
2 changed files with 43 additions and 38 deletions

View file

@ -5,29 +5,30 @@ on:
types: types:
- completed - completed
jobs: jobs:
x86_64-linux: # TODO(build-system): enable x86 Linux CI here, dependency cycle in build.zig
runs-on: ubuntu-latest # x86_64-linux:
# We want to run on external PRs, but not on our own internal PRs as they'll be run by the push # runs-on: ubuntu-latest
# to the branch. # # We want to run on external PRs, but not on our own internal PRs as they'll be run by the push
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository # # to the branch.
steps: # if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
- name: Checkout # steps:
uses: actions/checkout@v2 # - name: Checkout
- name: Setup Zig # uses: actions/checkout@v2
run: | # - name: Setup Zig
sudo apt install xz-utils # run: |
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 apt install xz-utils
- name: Clone mach-glfw # 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'
run: rm libs/mach-glfw && git clone https://github.com/hexops/mach-glfw libs/mach-glfw # - name: Clone mach-glfw
- name: install # run: rm libs/mach-glfw && git clone https://github.com/hexops/mach-glfw libs/mach-glfw
run: zig build install && find zig-out/ # - name: install
- name: upload # run: zig build install && find zig-out/
run: | # - name: upload
mv zig-out/lib/libdawn.a zig-out/lib/libdawn_x86_64-linux.a # run: |
gzip -9 zig-out/lib/libdawn_x86_64-linux.a # mv zig-out/lib/libdawn.a zig-out/lib/libdawn_x86_64-linux.a
gh release upload $(git rev-parse --short HEAD) zig-out/lib/libdawn_x86_64-linux.a.gz # gzip -9 zig-out/lib/libdawn_x86_64-linux.a
env: # gh release upload $(git rev-parse --short HEAD) zig-out/lib/libdawn_x86_64-linux.a.gz
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # env:
# 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

View file

@ -11,21 +11,25 @@ jobs:
run: run:
shell: "/usr/bin/arch -arch arm64e /bin/bash --noprofile --norc -eo pipefail {0}" shell: "/usr/bin/arch -arch arm64e /bin/bash --noprofile --norc -eo pipefail {0}"
steps: steps:
- name: Checkout # TODO(build-system): remove this step, uncomment the steps below, and fix the M1 CI runner.
uses: actions/checkout@v2
- name: Setup Zig - name: Setup Zig
run: | run: |
zig version zig version
- name: Clone mach-glfw # - name: Checkout
run: rm libs/mach-glfw && git clone https://github.com/hexops/mach-glfw libs/mach-glfw # uses: actions/checkout@v2
- name: install # - name: Setup Zig
run: zig build install && find zig-out/ # run: |
env: # zig version
AGREE: true # - name: Clone mach-glfw
- name: upload # run: rm libs/mach-glfw && git clone https://github.com/hexops/mach-glfw libs/mach-glfw
run: | # - name: install
mv zig-out/lib/libdawn.a zig-out/lib/libdawn_aarch64-macos.a # run: zig build install && find zig-out/
gzip -9 zig-out/lib/libdawn_aarch64-macos.a # env:
gh release upload $(git rev-parse --short HEAD) zig-out/lib/libdawn_aarch64-macos.a.gz # AGREE: true
env: # - name: upload
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # run: |
# mv zig-out/lib/libdawn.a zig-out/lib/libdawn_aarch64-macos.a
# gzip -9 zig-out/lib/libdawn_aarch64-macos.a
# gh release upload $(git rev-parse --short HEAD) zig-out/lib/libdawn_aarch64-macos.a.gz
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}