GHA: Several fixes on depexts workflow #270
Workflow file for this run
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: depexts | |
on: | |
pull_request: | |
paths: | |
- 'src/state/opamSysInteract.ml' | |
- '.github/workflows/depexts.yml' | |
- '.github/scripts/depexts/**' | |
push: | |
paths: | |
- 'master' | |
- '2.**' | |
defaults: | |
run: | |
shell: bash | |
env: | |
OPAMVERSION: 2.1.6 | |
OPAM_REPO: https://github.com/ocaml/opam-repository.git | |
OPAM_REPO_SHA: dff745994c64d083a6ba3ddc5a9c28ed0ad0f40a | |
jobs: | |
opam-cache: | |
runs-on: ubuntu-latest | |
steps: | |
- name: opam binary cache | |
id: binary | |
uses: actions/cache@v3 | |
with: | |
path: binary/opam | |
key: binary-${{ env.OPAMVERSION }} | |
- name: Retrieve opam binary | |
if: steps.binary.outputs.cache-hit != 'true' | |
run: | | |
rm -rf binary | |
mkdir -p binary | |
wget https://github.com/ocaml/opam/releases/download/$OPAMVERSION/opam-$OPAMVERSION-x86_64-linux -q -O binary/opam | |
chmod +x binary/opam | |
depexts-alpine: | |
needs: opam-cache | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: opam binary cache | |
uses: actions/cache@v3 | |
with: | |
path: binary/opam | |
key: binary-${{ env.OPAMVERSION }} | |
- name: generate action | |
run: | | |
bash .github/scripts/depexts/generate-actions.sh alpine | |
- name: depexts actions alpine | |
uses: ./.github/actions/alpine | |
id: depexts-alpine | |
depexts-archlinux: | |
needs: opam-cache | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: opam binary cache | |
uses: actions/cache@v3 | |
with: | |
path: binary/opam | |
key: binary-${{ env.OPAMVERSION }} | |
- name: generate action | |
run: | | |
bash .github/scripts/depexts/generate-actions.sh archlinux | |
- name: depexts actions archlinux | |
uses: ./.github/actions/archlinux | |
id: depexts-archlinux | |
depexts-centos: | |
needs: opam-cache | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: opam binary cache | |
uses: actions/cache@v3 | |
with: | |
path: binary/opam | |
key: binary-${{ env.OPAMVERSION }} | |
- name: generate action | |
run: | | |
bash .github/scripts/depexts/generate-actions.sh centos | |
- name: depexts actions centos | |
uses: ./.github/actions/centos | |
id: depexts-centos | |
depexts-debian: | |
needs: opam-cache | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: opam binary cache | |
uses: actions/cache@v3 | |
with: | |
path: binary/opam | |
key: binary-${{ env.OPAMVERSION }} | |
- name: generate action | |
run: | | |
bash .github/scripts/depexts/generate-actions.sh debian | |
- name: depexts actions debian | |
uses: ./.github/actions/debian | |
id: depexts-debian | |
depexts-fedora: | |
needs: opam-cache | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: opam binary cache | |
uses: actions/cache@v3 | |
with: | |
path: binary/opam | |
key: binary-${{ env.OPAMVERSION }} | |
- name: generate action | |
run: | | |
bash .github/scripts/depexts/generate-actions.sh fedora | |
- name: depexts actions fedora | |
uses: ./.github/actions/fedora | |
id: depexts-fedora | |
depexts-gentoo: | |
needs: opam-cache | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: opam binary cache | |
uses: actions/cache@v3 | |
with: | |
path: binary/opam | |
key: binary-${{ env.OPAMVERSION }} | |
- name: generate action | |
run: | | |
bash .github/scripts/depexts/generate-actions.sh gentoo | |
- name: depexts actions gentoo | |
uses: ./.github/actions/gentoo | |
id: depexts-gentoo | |
depexts-opensuse: | |
needs: opam-cache | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: opam binary cache | |
uses: actions/cache@v3 | |
with: | |
path: binary/opam | |
key: binary-${{ env.OPAMVERSION }} | |
- name: generate action | |
run: | | |
bash .github/scripts/depexts/generate-actions.sh opensuse | |
- name: depexts actions opensuse | |
uses: ./.github/actions/opensuse | |
id: depexts-opensuse | |
depexts-oraclelinux: | |
needs: opam-cache | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: opam binary cache | |
uses: actions/cache@v3 | |
with: | |
path: binary/opam | |
key: binary-${{ env.OPAMVERSION }} | |
- name: generate action | |
run: | | |
bash .github/scripts/depexts/generate-actions.sh oraclelinux | |
- name: depexts actions oraclelinux | |
uses: ./.github/actions/oraclelinux | |
id: depexts-oraclelinux | |
depexts-ubuntu: | |
needs: opam-cache | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: opam binary cache | |
uses: actions/cache@v3 | |
with: | |
path: binary/opam | |
key: binary-${{ env.OPAMVERSION }} | |
- name: generate action | |
run: | | |
bash .github/scripts/depexts/generate-actions.sh ubuntu | |
- name: depexts actions ubuntu | |
uses: ./.github/actions/ubuntu | |
id: depexts-ubuntu |