name: Emu build (Linux) on: push: branches: [ "ci-build-emu-linux*", "ci-build-all" ] tags: - release* pull_request: branches: [ "dev" ] workflow_dispatch: # allows manual trigger permissions: contents: write env: THIRD_PARTY_BASE_DIR: 'third-party' DEPS_CACHE_KEY: emu-deps-linux DEPS_CACHE_DIR: build-linux-deps PACKAGE_ROOT_PATH: "build-linux/package" jobs: build: runs-on: ubuntu-22.04 steps: - name: Checkout branch uses: actions/checkout@v4 ### deps - name: Lookup cache for deps id: emu-deps-cache-step # !tag && !pull_request # also you could use this: github.event_name != 'pull_request' if: | !startsWith(github.ref, 'refs/tags/') && !startsWith(github.ref, 'refs/pull/') uses: actions/cache@v3 with: key: ${{ env.DEPS_CACHE_KEY }} path: ${{ env.DEPS_CACHE_DIR }} lookup-only: true - name: Clone third-party deps (deps/linux) if: steps.emu-deps-cache-step.outputs.cache-hit != 'true' uses: actions/checkout@v4 with: ref: 'third-party/deps/linux' path: "${{env.THIRD_PARTY_BASE_DIR}}/deps/linux" - name: Clone third-party deps (deps/common) if: steps.emu-deps-cache-step.outputs.cache-hit != 'true' uses: actions/checkout@v4 with: ref: 'third-party/deps/common' path: "${{env.THIRD_PARTY_BASE_DIR}}/deps/common" - name: Build deps if: steps.emu-deps-cache-step.outputs.cache-hit != 'true' shell: bash run: sudo chmod 777 build_linux_deps.sh && sudo ./build_linux_deps.sh ## mandatory Linux packages, installed via sudo apt install ... - name: Install required packages shell: bash run: sudo chmod 777 build_linux_deps.sh && sudo ./build_linux_deps.sh -packages_only ## extra helpers/tools, these are not built inside the deps build dir - name: Clone third-party build helpers (build/linux) uses: actions/checkout@v4 with: ref: 'third-party/build/linux' path: "${{env.THIRD_PARTY_BASE_DIR}}/build/linux" ### build (release mode) - name: Build release mode continue-on-error: true shell: bash working-directory: ${{ github.workspace }} run: "sudo chmod 777 build_linux.sh && ./build_linux.sh release" ### package (release mode) - name: Package build (release) if: success() shell: bash working-directory: ${{ github.workspace }} run: sudo chmod 77 package_linux.sh && sudo ./package_linux.sh release ### upload artifact/package to github Actions (release mode) - name: Upload build pacakge (release) if: success() uses: actions/upload-artifact@v4 with: name: "build-linux-release-${{ github.sha }}" path: "${{ env.PACKAGE_ROOT_PATH }}/release/" if-no-files-found: 'error' compression-level: 9 retention-days: 1 ### build (debug mode) - name: Build debug mode continue-on-error: true shell: bash working-directory: ${{ github.workspace }} run: "sudo chmod 777 build_linux.sh && ./build_linux.sh debug" ### package (debug mode) - name: Package build (debug) if: success() shell: bash working-directory: ${{ github.workspace }} run: sudo chmod 77 package_linux.sh && sudo ./package_linux.sh debug ### upload artifact/package to github Actions (debug mode) - name: Upload build pacakge (debug) if: success() uses: actions/upload-artifact@v4 with: name: "build-linux-debug-${{ github.sha }}" path: "${{ env.PACKAGE_ROOT_PATH }}/debug/" if-no-files-found: 'error' compression-level: 9 retention-days: 1 ### release (debug + release modes) if this is a tag push - name: Release if: success() && startsWith(github.ref, 'refs/tags/') uses: softprops/action-gh-release@v1 with: files: "${{ env.PACKAGE_ROOT_PATH }}/**/*"