gpu-dawn: CI: temporarily disable musl builds (hexops/mach#845)

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2023-07-07 22:16:10 -07:00
parent 997acca1c9
commit 56665921b7

View file

@ -51,52 +51,53 @@ jobs:
env: env:
RELEASE_NAME: x86_64-linux-gnu_release-fast RELEASE_NAME: x86_64-linux-gnu_release-fast
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
x86_64-linux-musl_debug: # TODO(libx11) https://github.com/hexops/mach/issues/845
runs-on: ubuntu-latest # x86_64-linux-musl_debug:
# 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.workflow_run.conclusion == 'success' && (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository) # # to the branch.
steps: # if: github.event.workflow_run.conclusion == 'success' && (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository)
- name: Checkout # steps:
uses: actions/checkout@v2 # - name: Checkout
with: # uses: actions/checkout@v2
submodules: 'true' # with:
- name: Setup Zig # submodules: 'true'
run: | # - name: Setup Zig
sudo apt install xz-utils libx11-dev # TODO(libx11) https://github.com/hexops/mach/issues/845 # run: |
sudo sh -c 'wget -c https://ziglang.org/builds/zig-linux-x86_64-0.11.0-dev.3883+7166407d8.tar.xz -O - | tar -xJ --strip-components=1 -C /usr/local/bin' # sudo apt install xz-utils libx11-dev # TODO(libx11) https://github.com/hexops/mach/issues/845
- name: Clone mach-glfw # sudo sh -c 'wget -c https://ziglang.org/builds/zig-linux-x86_64-0.11.0-dev.3883+7166407d8.tar.xz -O - | tar -xJ --strip-components=1 -C /usr/local/bin'
run: rm libs/mach-glfw && git clone --recursive https://github.com/hexops/mach-glfw libs/mach-glfw # - name: Clone mach-glfw
- name: install (debug) # run: rm libs/mach-glfw && git clone --recursive https://github.com/hexops/mach-glfw libs/mach-glfw
run: zig build install -Dtarget=x86_64-linux-musl # - name: install (debug)
- name: upload (debug) # run: zig build install -Dtarget=x86_64-linux-musl
run: ./dev/upload-release.sh # - name: upload (debug)
env: # run: ./dev/upload-release.sh
RELEASE_NAME: x86_64-linux-musl_debug # env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # RELEASE_NAME: x86_64-linux-musl_debug
x86_64-linux-musl_release-fast: # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
runs-on: ubuntu-latest # x86_64-linux-musl_release-fast:
# 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.workflow_run.conclusion == 'success' && (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository) # # to the branch.
steps: # if: github.event.workflow_run.conclusion == 'success' && (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository)
- name: Checkout # steps:
uses: actions/checkout@v2 # - name: Checkout
with: # uses: actions/checkout@v2
submodules: 'true' # with:
- name: Setup Zig # submodules: 'true'
run: | # - name: Setup Zig
sudo apt install xz-utils libx11-dev # TODO(libx11) https://github.com/hexops/mach/issues/845 # run: |
sudo sh -c 'wget -c https://ziglang.org/builds/zig-linux-x86_64-0.11.0-dev.3883+7166407d8.tar.xz -O - | tar -xJ --strip-components=1 -C /usr/local/bin' # sudo apt install xz-utils libx11-dev # TODO(libx11) https://github.com/hexops/mach/issues/845
- name: Clone mach-glfw # sudo sh -c 'wget -c https://ziglang.org/builds/zig-linux-x86_64-0.11.0-dev.3883+7166407d8.tar.xz -O - | tar -xJ --strip-components=1 -C /usr/local/bin'
run: rm libs/mach-glfw && git clone --recursive https://github.com/hexops/mach-glfw libs/mach-glfw # - name: Clone mach-glfw
- name: install (release-fast) # run: rm libs/mach-glfw && git clone --recursive https://github.com/hexops/mach-glfw libs/mach-glfw
run: zig build install -Doptimize=ReleaseFast -Dtarget=x86_64-linux-musl # - name: install (release-fast)
- name: upload (release-fast) # run: zig build install -Doptimize=ReleaseFast -Dtarget=x86_64-linux-musl
run: ./dev/upload-release.sh # - name: upload (release-fast)
env: # run: ./dev/upload-release.sh
RELEASE_NAME: x86_64-linux-musl_release-fast # env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # RELEASE_NAME: x86_64-linux-musl_release-fast
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
aarch64-linux-gnu_debug: aarch64-linux-gnu_debug:
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
@ -143,52 +144,53 @@ jobs:
env: env:
RELEASE_NAME: aarch64-linux-gnu_release-fast RELEASE_NAME: aarch64-linux-gnu_release-fast
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
aarch64-linux-musl_debug: # TODO(libx11) https://github.com/hexops/mach/issues/845
runs-on: ubuntu-latest # aarch64-linux-musl_debug:
# 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.workflow_run.conclusion == 'success' && (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository) # # to the branch.
steps: # if: github.event.workflow_run.conclusion == 'success' && (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository)
- name: Checkout # steps:
uses: actions/checkout@v2 # - name: Checkout
with: # uses: actions/checkout@v2
submodules: 'true' # with:
- name: Setup Zig # submodules: 'true'
run: | # - name: Setup Zig
sudo apt install xz-utils libx11-dev # TODO(libx11) https://github.com/hexops/mach/issues/845 # run: |
sudo sh -c 'wget -c https://ziglang.org/builds/zig-linux-x86_64-0.11.0-dev.3883+7166407d8.tar.xz -O - | tar -xJ --strip-components=1 -C /usr/local/bin' # sudo apt install xz-utils libx11-dev # TODO(libx11) https://github.com/hexops/mach/issues/845
- name: Clone mach-glfw # sudo sh -c 'wget -c https://ziglang.org/builds/zig-linux-x86_64-0.11.0-dev.3883+7166407d8.tar.xz -O - | tar -xJ --strip-components=1 -C /usr/local/bin'
run: rm libs/mach-glfw && git clone --recursive https://github.com/hexops/mach-glfw libs/mach-glfw # - name: Clone mach-glfw
- name: install (debug) # run: rm libs/mach-glfw && git clone --recursive https://github.com/hexops/mach-glfw libs/mach-glfw
run: zig build install -Dtarget=aarch64-linux-musl # - name: install (debug)
- name: upload (debug) # run: zig build install -Dtarget=aarch64-linux-musl
run: ./dev/upload-release.sh # - name: upload (debug)
env: # run: ./dev/upload-release.sh
RELEASE_NAME: aarch64-linux-musl_debug # env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # RELEASE_NAME: aarch64-linux-musl_debug
aarch64-linux-musl_release-fast: # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
runs-on: ubuntu-latest # aarch64-linux-musl_release-fast:
# 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.workflow_run.conclusion == 'success' && (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository) # # to the branch.
steps: # if: github.event.workflow_run.conclusion == 'success' && (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository)
- name: Checkout # steps:
uses: actions/checkout@v2 # - name: Checkout
with: # uses: actions/checkout@v2
submodules: 'true' # with:
- name: Setup Zig # submodules: 'true'
run: | # - name: Setup Zig
sudo apt install xz-utils libx11-dev # TODO(libx11) https://github.com/hexops/mach/issues/845 # run: |
sudo sh -c 'wget -c https://ziglang.org/builds/zig-linux-x86_64-0.11.0-dev.3883+7166407d8.tar.xz -O - | tar -xJ --strip-components=1 -C /usr/local/bin' # sudo apt install xz-utils libx11-dev # TODO(libx11) https://github.com/hexops/mach/issues/845
- name: Clone mach-glfw # sudo sh -c 'wget -c https://ziglang.org/builds/zig-linux-x86_64-0.11.0-dev.3883+7166407d8.tar.xz -O - | tar -xJ --strip-components=1 -C /usr/local/bin'
run: rm libs/mach-glfw && git clone --recursive https://github.com/hexops/mach-glfw libs/mach-glfw # - name: Clone mach-glfw
- name: install (release-fast) # run: rm libs/mach-glfw && git clone --recursive https://github.com/hexops/mach-glfw libs/mach-glfw
run: zig build install -Doptimize=ReleaseFast -Dtarget=aarch64-linux-musl # - name: install (release-fast)
- name: upload (release-fast) # run: zig build install -Doptimize=ReleaseFast -Dtarget=aarch64-linux-musl
run: ./dev/upload-release.sh # - name: upload (release-fast)
env: # run: ./dev/upload-release.sh
RELEASE_NAME: aarch64-linux-musl_release-fast # env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # RELEASE_NAME: aarch64-linux-musl_release-fast
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
x86_64-windows-gnu_debug: x86_64-windows-gnu_debug:
runs-on: windows-latest runs-on: windows-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