diff options
Diffstat (limited to '.github/workflows/macos.yml')
| -rw-r--r-- | .github/workflows/macos.yml | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml deleted file mode 100644 index 12993528d..000000000 --- a/.github/workflows/macos.yml +++ /dev/null @@ -1,74 +0,0 @@ -name: MacOS Build CI - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true -jobs: - build: - name: MacOS Build CI - runs-on: macos-latest - - strategy: - matrix: - configuration: ['release'] # 'debug' - compiler: ['clang'] - platform: ['aarch64'] - targetPlatform: ['aarch64'] - steps: - - uses: actions/checkout@v3 - with: - submodules: 'true' - fetch-depth: '0' - - name: build - run: | - CC=${{matrix.compiler}} - CONFIGURATION=${{matrix.configuration}} - ARCH=${{matrix.platform}} - TARGETARCH=${{matrix.targetPlatform}} - CPPFLAGS=-Werror - CFLAGS=-Werror - CXXFLAGS=-Werror - source ./github_macos_build.sh - - name: Package - id: package - run: | - export SLANG_OS_NAME=macos - export SLANG_ARCH_NAME=${{matrix.targetPlatform}} - export TAG_NAME=`git describe --tags` - export SLANG_TAG=${TAG_NAME#v} - echo "tag:$TAG_NAME" - echo "slang-tag:$SLANG_TAG" - export SLANG_BINARY_ARCHIVE=slang-${SLANG_TAG}-${SLANG_OS_NAME}-${SLANG_ARCH_NAME}.zip - echo "creating zip" - 7z a ${SLANG_BINARY_ARCHIVE} slang.h - 7z a ${SLANG_BINARY_ARCHIVE} slang-com-helper.h - 7z a ${SLANG_BINARY_ARCHIVE} slang-com-ptr.h - 7z a ${SLANG_BINARY_ARCHIVE} slang-tag-version.h - 7z a ${SLANG_BINARY_ARCHIVE} slang-gfx.h - 7z a ${SLANG_BINARY_ARCHIVE} prelude/*.h - 7z a ${SLANG_BINARY_ARCHIVE} bin/*/*/libslang.dylib - 7z a ${SLANG_BINARY_ARCHIVE} bin/*/*/libslang-glslang.dylib - 7z a ${SLANG_BINARY_ARCHIVE} bin/*/*/libgfx.dylib - 7z a ${SLANG_BINARY_ARCHIVE} bin/*/*/slangc - 7z a ${SLANG_BINARY_ARCHIVE} bin/*/*/slangd - 7z a ${SLANG_BINARY_ARCHIVE} docs/*.md - 7z a ${SLANG_BINARY_ARCHIVE} README.md - 7z a ${SLANG_BINARY_ARCHIVE} LICENSE - echo "SLANG_BINARY_ARCHIVE=${SLANG_BINARY_ARCHIVE}" >> $GITHUB_OUTPUT - - uses: actions/upload-artifact@v3 - with: - name: slang-build-${{matrix.configuration}}-${{matrix.targetPlatform}}-${{matrix.compiler}} - path: | - ${{ steps.package.outputs.SLANG_BINARY_ARCHIVE }} - - name: test - if: ${{ matrix.targetPlatform != 'x64' }} - run: - CONFIGURATION=${{matrix.configuration}} - CC=${{matrix.compiler}} - ARCH=${{matrix.targetPlatform}} - source .github/github_test.sh |
