aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2022-11-14 17:40:44 -0700
committerAndrew Kelley <andrew@ziglang.org>2022-11-14 17:40:44 -0700
commit14986077ceefc3955fb90f869411dc6940727fa9 (patch)
tree5b341906ab23def51b9dbd59fff29056b19b088f /.github
parenta50ad04e8542d63262dabaede5fff52e41157d07 (diff)
downloadzig-14986077ceefc3955fb90f869411dc6940727fa9.tar.gz
zig-14986077ceefc3955fb90f869411dc6940727fa9.zip
CI: disable github workflows until it is working in the ci branch
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yaml48
1 files changed, 0 insertions, 48 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
deleted file mode 100644
index 30d65fa99a..0000000000
--- a/.github/workflows/ci.yaml
+++ /dev/null
@@ -1,48 +0,0 @@
-name: push_ci
-run-name: Push CI
-on:
- push:
- branches:
- - master
-jobs:
- linux-aarch64:
- runs-on: [self-hosted, Linux, aarch64]
- steps:
- - name: Checkout
- uses: actions/checkout@v3
- - name: Run Build Script
- run: sh ./ci/linux/build-aarch64.sh
- macos-x86_64:
- strategy:
- matrix:
- version: ["11", "12"]
- runs-on: "macos-${{ matrix.version }}"
- env:
- ARCH: "x86_64"
- MACOS_VERSION: ${{ matrix.version }}
- steps:
- - name: Checkout
- uses: actions/checkout@v3
-
- - name: Run Build Script
- run: ./ci/macos/build-x86_64.sh
- macos-aarch64:
- runs-on: [self-hosted, macOS, aarch64]
- env:
- ARCH: "aarch64"
- steps:
- - name: Checkout
- uses: actions/checkout@v3
-
- - name: Run Build Script
- run: ./ci/macos/build-aarch64.sh
- # windows:
- # runs-on: [self-hosted, Windows, x64]
- # env:
- # ARCH: "x86_64"
- # steps:
- # - name: Checkout
- # uses: actions/checkout@v3
-
- # # - name: Run Build Script
- # # run: ./ci/windows/build.ps1