msvc #185
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: ci | |
on: | |
push: | |
branches: | |
- ci-scripts | |
env: | |
ci-zig-version: 0.13.0-dev.76+dee9f82f6 | |
jobs: | |
x86_64-linux-debug: | |
if: github.repository_owner == 'ziglang' | |
runs-on: [self-hosted, Linux, x86_64] | |
steps: | |
- name: Download Zig | |
run: 'mkdir -p ~/deps && ! mkdir ~/deps/zig-x86_64-linux-musl-${{env.ci-zig-version}} 2> /dev/null || curl https://jacobly.com/deps/zig-x86_64-linux-musl-${{env.ci-zig-version}}.tar.xz | tar xJ -C ~/deps' | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Build and Test | |
working-directory: ci | |
run: ~/deps/zig-x86_64-linux-musl-${{env.ci-zig-version}}/bin/zig build --maxrss 21000000000 -Dbuild-type=Debug -Dextra-target=arm-linux-musleabihf cmake-bootstrap tidy update-stage1 | |
x86_64-linux-release: | |
if: github.repository_owner == 'ziglang' | |
runs-on: [self-hosted, Linux, x86_64] | |
steps: | |
- name: Download Zig | |
run: 'mkdir -p ~/deps && ! mkdir ~/deps/zig-x86_64-linux-musl-${{env.ci-zig-version}} 2> /dev/null || curl https://jacobly.com/deps/zig-x86_64-linux-musl-${{env.ci-zig-version}}.tar.xz | tar xJ -C ~/deps' | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Build and Test | |
working-directory: ci | |
run: ~/deps/zig-x86_64-linux-musl-${{env.ci-zig-version}}/bin/zig build --maxrss 21000000000 -Dbuild-type=Release -Dextra-target=arm-linux-musleabihf -Dcc=cc cc-bootstrap cmake-bootstrap tidy reproducible update-stage1 | |
aarch64-linux-debug: | |
if: github.repository_owner == 'ziglang' | |
runs-on: [self-hosted, Linux, aarch64] | |
steps: | |
- name: Download Zig | |
run: 'mkdir -p ~/deps && ! mkdir ~/deps/zig-aarch64-linux-musl-${{env.ci-zig-version}} 2> /dev/null || curl https://jacobly.com/deps/zig-aarch64-linux-musl-${{env.ci-zig-version}}.tar.xz | tar xJ -C ~/deps' | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Build and Test | |
working-directory: ci | |
run: ~/deps/zig-aarch64-linux-musl-${{env.ci-zig-version}}/bin/zig build --maxrss 24696061952 -Dbuild-type=Debug -Dextra-target=arm-linux-musleabihf cmake-bootstrap tidy update-stage1 | |
aarch64-linux-release: | |
if: github.repository_owner == 'ziglang' | |
runs-on: [self-hosted, Linux, aarch64] | |
steps: | |
- name: Download Zig | |
run: 'mkdir -p ~/deps && ! mkdir ~/deps/zig-aarch64-linux-musl-${{env.ci-zig-version}} 2> /dev/null || curl https://jacobly.com/deps/zig-aarch64-linux-musl-${{env.ci-zig-version}}.tar.xz | tar xJ -C ~/deps' | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Build and Test | |
working-directory: ci | |
run: ~/deps/zig-aarch64-linux-musl-${{env.ci-zig-version}}/bin/zig build --maxrss 24696061952 -Dbuild-type=Release -Dextra-target=arm-linux-musleabihf cmake-bootstrap tidy reproducible update-stage1 | |
x86_64-macos-debug: | |
if: github.repository_owner == 'ziglang' | |
runs-on: "macos-11" | |
steps: | |
- name: Restore Zig Cache | |
id: zig-cache | |
uses: actions/cache/restore@v4 | |
with: | |
path: ~/deps/zig-x86_64-macos-none-${{env.ci-zig-version}} | |
key: zig-x86_64-macos-none-${{env.ci-zig-version}} | |
- name: Download Zig | |
if: steps.zig-cache.outputs.cache-hit != 'true' | |
run: 'mkdir -p ~/deps && curl https://jacobly.com/deps/zig-x86_64-macos-none-${{env.ci-zig-version}}.tar.xz | tar xJ -C ~/deps' | |
- name: Save Zig Cache | |
if: steps.zig-cache.outputs.cache-hit != 'true' | |
uses: actions/cache/save@v4 | |
with: | |
path: ~/deps/zig-x86_64-macos-none-${{env.ci-zig-version}} | |
key: ${{steps.zig-cache.outputs.cache-primary-key}} | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Restore Package Cache | |
id: package-cache | |
uses: actions/cache/restore@v4 | |
with: | |
path: ~/.cache/zig | |
key: x86_64-macos-package-${{hashFiles('ci/build.zig.zon')}} | |
restore-keys: x86_64-macos-package- | |
- name: Build and Test | |
working-directory: ci | |
run: ~/deps/zig-x86_64-macos-none-${{env.ci-zig-version}}/bin/zig build -Dbuild-type=Debug -Dskip-non-native cmake-bootstrap tidy update-stage1 | |
- name: Save Package Cache | |
if: steps.package-cache.outputs.cache-hit != 'true' | |
uses: actions/cache/save@v4 | |
with: | |
path: ~/.cache/zig | |
key: ${{steps.package-cache.outputs.cache-primary-key}} | |
x86_64-macos-release: | |
if: github.repository_owner == 'ziglang' | |
runs-on: "macos-11" | |
steps: | |
- name: Restore Zig Cache | |
id: zig-cache | |
uses: actions/cache/restore@v4 | |
with: | |
path: ~/deps/zig-x86_64-macos-none-${{env.ci-zig-version}} | |
key: zig-x86_64-macos-none-${{env.ci-zig-version}} | |
- name: Download Zig | |
if: steps.zig-cache.outputs.cache-hit != 'true' | |
run: 'mkdir -p ~/deps && curl https://jacobly.com/deps/zig-x86_64-macos-none-${{env.ci-zig-version}}.tar.xz | tar xJ -C ~/deps' | |
- name: Save Zig Cache | |
if: steps.zig-cache.outputs.cache-hit != 'true' | |
uses: actions/cache/save@v4 | |
with: | |
path: ~/deps/zig-x86_64-macos-none-${{env.ci-zig-version}} | |
key: ${{steps.zig-cache.outputs.cache-primary-key}} | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Restore Package Cache | |
id: package-cache | |
uses: actions/cache/restore@v4 | |
with: | |
path: ~/.cache/zig | |
key: x86_64-macos-package-${{hashFiles('ci/build.zig.zon')}} | |
restore-keys: x86_64-macos-package- | |
- name: Build and Test | |
working-directory: ci | |
run: ~/deps/zig-x86_64-macos-none-${{env.ci-zig-version}}/bin/zig build -Dbuild-type=Release -Dcc=cc -Dskip-non-native cc-bootstrap cmake-bootstrap tidy reproducible update-stage1 | |
- name: Save Package Cache | |
if: steps.package-cache.outputs.cache-hit != 'true' | |
uses: actions/cache/save@v4 | |
with: | |
path: ~/.cache/zig | |
key: ${{steps.package-cache.outputs.cache-primary-key}} | |
aarch64-macos-debug: | |
if: github.repository_owner == 'ziglang' | |
runs-on: [self-hosted, macOS, aarch64] | |
steps: | |
- name: Download Zig | |
run: 'mkdir -p ~/deps && ! mkdir ~/deps/zig-aarch64-macos-none-${{env.ci-zig-version}} 2> /dev/null || curl https://jacobly.com/deps/zig-aarch64-macos-none-${{env.ci-zig-version}}.tar.xz | tar xJ -C ~/deps' | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Build and Test | |
working-directory: ci | |
run: ~/deps/zig-aarch64-macos-none-${{env.ci-zig-version}}/bin/zig build -Dbuild-type=Debug -Dskip-non-native cmake-bootstrap tidy update-stage1 | |
aarch64-macos-release: | |
if: github.repository_owner == 'ziglang' | |
runs-on: [self-hosted, macOS, aarch64] | |
steps: | |
- name: Download Zig | |
run: 'mkdir -p ~/deps && ! mkdir ~/deps/zig-aarch64-macos-none-${{env.ci-zig-version}} 2> /dev/null || curl https://jacobly.com/deps/zig-aarch64-macos-none-${{env.ci-zig-version}}.tar.xz | tar xJ -C ~/deps' | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Build and Test | |
working-directory: ci | |
run: ~/deps/zig-aarch64-macos-none-${{env.ci-zig-version}}/bin/zig build -Dbuild-type=Release -Dskip-non-native cmake-bootstrap tidy reproducible update-stage1 | |
x86_64-windows-debug: | |
if: github.repository_owner == 'ziglang' | |
runs-on: [self-hosted, Windows, x86_64] | |
steps: | |
- name: Download Zig | |
run: | | |
if (New-Item -Path $Env:USERPROFILE\deps\zig-x86_64-windows-gnu-${{env.ci-zig-version}} -ItemType Directory -ErrorAction Ignore) { | |
Invoke-WebRequest -Uri https://jacobly.com/deps/zig-x86_64-windows-gnu-${{env.ci-zig-version}}.zip -OutFile zig-x86_64-windows-gnu-${{env.ci-zig-version}}.zip | |
Expand-Archive -LiteralPath zig-x86_64-windows-gnu-${{env.ci-zig-version}}.zip -DestinationPath $Env:USERPROFILE\deps | |
} | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Build and Test | |
working-directory: ci | |
run: '& $Env:USERPROFILE\deps\zig-x86_64-windows-gnu-${{env.ci-zig-version}}\bin\zig.exe build -Dbuild-type=Debug -Dskip-non-native cmake-bootstrap tidy update-stage1 msvc' | |
x86_64-windows-release: | |
if: github.repository_owner == 'ziglang' | |
runs-on: [self-hosted, Windows, x86_64] | |
steps: | |
- name: Download Zig | |
run: | | |
if (New-Item -Path $Env:USERPROFILE\deps\zig-x86_64-windows-gnu-${{env.ci-zig-version}} -ItemType Directory -ErrorAction Ignore) { | |
Invoke-WebRequest -Uri https://jacobly.com/deps/zig-x86_64-windows-gnu-${{env.ci-zig-version}}.zip -OutFile zig-x86_64-windows-gnu-${{env.ci-zig-version}}.zip | |
Expand-Archive -LiteralPath zig-x86_64-windows-gnu-${{env.ci-zig-version}}.zip -DestinationPath $Env:USERPROFILE\deps | |
} | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Build and Test | |
working-directory: ci | |
run: '& $Env:USERPROFILE\deps\zig-x86_64-windows-gnu-${{env.ci-zig-version}}\bin\zig.exe build -Dbuild-type=Release -Dskip-non-native cmake-bootstrap tidy update-stage1' # reproducible | |
aarch64-windows-release: | |
if: github.repository_owner == 'ziglang' | |
runs-on: [self-hosted, Windows, aarch64] | |
steps: | |
- name: Download Zig | |
run: | | |
if (New-Item -Path $Env:USERPROFILE\deps\zig-aarch64-windows-gnu-${{env.ci-zig-version}} -ItemType Directory -ErrorAction Ignore) { | |
Invoke-WebRequest -Uri https://jacobly.com/deps/zig-aarch64-windows-gnu-${{env.ci-zig-version}}.zip -OutFile zig-aarch64-windows-gnu-${{env.ci-zig-version}}.zip | |
Expand-Archive -LiteralPath zig-aarch64-windows-gnu-${{env.ci-zig-version}}.zip -DestinationPath $Env:USERPROFILE\deps | |
} | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Build and Test | |
working-directory: ci | |
run: '& $Env:USERPROFILE\deps\zig-aarch64-windows-gnu-${{env.ci-zig-version}}\bin\zig.exe build -Dbuild-type=Release -Dskip-non-native cmake-bootstrap tidy' # reproducible |