From edade2ed184c5a95743c95f0c67688cd8ba30e18 Mon Sep 17 00:00:00 2001 From: jsmall-nvidia Date: Wed, 20 Oct 2021 11:26:52 -0400 Subject: Initial `slang-pack` integration (#1974) * #include an absolute path didn't work - because paths were taken to always be relative. * First integration of slang-pack. * Use .os * Add optional dependency support. * Update github actions/scripts to update deps. aarch64 needs special handling. * Upgrade to latest slang-pack for ignore-deps support. * Fix linux build issues. --- .github/workflows/c-cpp.yml | 3 +++ 1 file changed, 3 insertions(+) (limited to '.github/workflows/c-cpp.yml') diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index 2bffa36ed..e848b8170 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -14,6 +14,7 @@ jobs: matrix: configuration: ['debug', 'release'] compiler: ['gcc', 'clang'] + platform: ['x64'] steps: - uses: actions/checkout@v2.3.4 with: @@ -23,9 +24,11 @@ jobs: run: CC=${{matrix.compiler}} CONFIGURATION=${{matrix.configuration}} + ARCH=${{matrix.platform}} source ./github_build.sh - name: test run: CONFIGURATION=${{matrix.configuration}} CC=${{matrix.compiler}} + ARCH=${{matrix.platform}} source ./github_test.sh \ No newline at end of file -- cgit v1.2.3