Files
mod_tile/.github/actions/build-archive/extract/action.yml
David Hummel 7c4081dc81 Added build & test on Fedora 34
* Takes about 3-5 minutes

**Also:**
* Split up `Lint` and `Build & Test`
  * Into independent workflows
* Changed `.tar` compression to `GZip`
  * `--zstd` not available in `CentOS 7`
  * Also excluded `.git` & `.gitignore`
* Created `Provisioning` local action
  * Combining update & install steps, etc.
* Added libraries to `Ubuntu` build dependencies
  * `libmemcached-dev` & `librados-dev`
  * In order to test for successful compilation
* ~~Reduced `build-archive` retention to 1 day~~
* Updated `ax_pthread` macro
  * While trying to resolve `apxs` failure
  * http://www.gnu.org/software/autoconf-archive/ax_pthread.html
2021-08-02 17:03:19 +02:00

11 lines
235 B
YAML

---
runs:
using: composite
steps:
- name: Extract build archive
run: |
tar --verbose --extract --gzip \
--file=/tmp/workspace.tar.gz
shell: bash
working-directory: ${{ github.workspace }}/..