Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .ci/docker/Dockerfile.ubuntu-groovy
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
FROM ubuntu:groovy

ENV DEBIAN_FRONTEND=noninteractive
21 changes: 21 additions & 0 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,3 +97,24 @@ jobs:
- name: Build
run: |
docker exec chimera-docker /bin/sh -c "cd $GITHUB_WORKSPACE && . .ci/script.sh";

groovy_gcc_release:
name: groovy_gcc_release_llvm9
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- name: Install Dependencies
env:
OS_NAME: linux
COMPILER: gcc
BUILD_TYPE: Release
LLVM_VERSION: 9 # 10 is the default but Chimera doesn't work with it
PYTHON_VERSION: 3.8
DOCKERFILE: Dockerfile.ubuntu-groovy
run: |
docker build -t "${DOCKERFILE,,}" -f ".ci/docker/$DOCKERFILE" .;
docker run -itd -v $GITHUB_WORKSPACE:$GITHUB_WORKSPACE --env-file .ci/docker/env.list --name chimera-docker "${DOCKERFILE,,}";
docker exec chimera-docker /bin/sh -c "cd $GITHUB_WORKSPACE && . .ci/install.sh";
- name: Build
run: |
docker exec chimera-docker /bin/sh -c "cd $GITHUB_WORKSPACE && . .ci/script.sh";