1name: amd64 Linux CMake 2 3on: 4 push: 5 pull_request: 6 schedule: 7 # min hours day(month) month day(week) 8 - cron: '0 0 7,22 * *' 9 10jobs: 11 # Building using the github runner environement directly. 12 make: 13 runs-on: ubuntu-latest 14 steps: 15 - uses: actions/checkout@v2 16 - name: Env 17 run: make --directory=cmake/ci amd64_env 18 - name: Devel 19 run: make --directory=cmake/ci amd64_devel 20 - name: Build 21 run: make --directory=cmake/ci amd64_build 22 - name: Test 23 run: make --directory=cmake/ci amd64_test 24 - name: Install Env 25 run: make --directory=cmake/ci amd64_install_env 26 - name: Install Devel 27 run: make --directory=cmake/ci amd64_install_devel 28 - name: Install Build 29 run: make --directory=cmake/ci amd64_install_build 30 - name: Install Test 31 run: make --directory=cmake/ci amd64_install_test 32