Dev whats new #4111
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: Ubuntu 20 Scopy Build | |
on: [push, pull_request] | |
env: | |
BUILD_HOST: ubuntu-20.04 | |
USERNAME: github-actions | |
jobs: | |
build_scopy_on_ubuntu20: | |
runs-on: ubuntu-20.04 | |
container: | |
image: cristianbindea/scopy2-ubuntu20:latest | |
options: --user root | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build Scopy | |
run: | | |
/bin/bash -c "git config --global --add safe.directory $GITHUB_WORKSPACE" | |
/bin/bash -c "export CI_SCRIPT=ON && $GITHUB_WORKSPACE/ci/ubuntu/ubuntu_build_process.sh build_scopy" |