summaryrefslogtreecommitdiffstats
path: root/.github/workflows/release-linux.yml
diff options
context:
space:
mode:
authorjsmall-nvidia <jsmall@nvidia.com>2021-10-20 11:26:52 -0400
committerGitHub <noreply@github.com>2021-10-20 11:26:52 -0400
commitedade2ed184c5a95743c95f0c67688cd8ba30e18 (patch)
tree1af9334cfe110fbc9475b5276109a4c37b68ee91 /.github/workflows/release-linux.yml
parentdeb638f446863ab38248a9568553a1eab47ca086 (diff)
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.
Diffstat (limited to '.github/workflows/release-linux.yml')
-rw-r--r--.github/workflows/release-linux.yml10
1 files changed, 8 insertions, 2 deletions
diff --git a/.github/workflows/release-linux.yml b/.github/workflows/release-linux.yml
index ec9dd54b1..8f31dc510 100644
--- a/.github/workflows/release-linux.yml
+++ b/.github/workflows/release-linux.yml
@@ -10,6 +10,11 @@ jobs:
build:
name: Upload Release Asset
runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ configuration: ['release']
+ compiler: ['gcc']
+ platform: ['x64']
steps:
- name: Checkout code
uses: actions/checkout@v2
@@ -20,8 +25,9 @@ jobs:
id: build
run: |
echo "starting to build..."
- export CC=gcc
- export CONFIGURATION=release
+ export CC=${{matrix.compiler}}
+ export CONFIGURATION=${{matrix.configuration}}
+ export ARCH=${{matrix.platform}}
echo "building..."
source ./github_build.sh
echo "creating binary archieves..."