Install standalone Experimental Outcome library (#32) #73
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker build CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Copy scripts to linux-x86 build context | |
run: cp install.sh ./linux-x86/. && cp libraries.txt ./linux-x86/. | |
- name: Copy scripts to full build contexts | |
run: cp install.sh ./full/. && cp libraries.txt ./full/. | |
- name: Build the linux Docker image | |
run: docker build ./linux-x86 -t tuwienspaceteam/sts1-cobc:latest-linux-x86 | |
- name: Build the full Docker image | |
run: docker build ./full | |