From 22bf64432ac0ba202a67aaa87093adaf26dc5782 Mon Sep 17 00:00:00 2001 From: "Alejandro R. Mosteo" Date: Wed, 8 Nov 2023 12:56:26 +0100 Subject: [PATCH] Add check from alr devel branch --- .github/workflows/build-native-master.yml | 62 +++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 .github/workflows/build-native-master.yml diff --git a/.github/workflows/build-native-master.yml b/.github/workflows/build-native-master.yml new file mode 100644 index 000000000..d401716a5 --- /dev/null +++ b/.github/workflows/build-native-master.yml @@ -0,0 +1,62 @@ +# Please read the TESTING file before modifying this file + +# When the same index version is used by various stable and devel `alr` +# versions, we want to make sure all of them understand the index properly. +# Besides, there are + +name: Build Crate (alr dev) +# Build the crate with a native toolchain from Alire + +env: + CHECKS_ORG: alire-project + CHECKS_REPO: alire-index-checks + +on: + pull_request: + paths: + - 'index/**.toml' + +jobs: + + build: + name: ${{ matrix.os }} + + runs-on: ${{ matrix.os }} + + strategy: + fail-fast: false + matrix: + os: + - macos-latest + - ubuntu-latest + - windows-latest + + steps: + - name: Check out alire-index + uses: actions/checkout@v2 + with: + fetch-depth: 0 + # Needed to be able to diff and obtain changed files. Furthermore, we + # need the full history or else grafted partial branches confuse the + # changed files detectors (in both scripts/gh-build-crate.sh and + # check-author action). + + - name: Check out alire-index-checks + uses: actions/checkout@v3 + with: + repository: ${{env.CHECKS_ORG}}/${{env.CHECKS_REPO}} + ref: ${{github.base_ref}} + path: ${{env.CHECKS_REPO}} + + - name: Set up devel `alr` + uses: alire-project/setup-alire@v2 + with: + branch: 'master' + + - name: Install tar from msys2 (Windows) # Git tar in Actions VM does not seem to work) + if: matrix.os == 'windows-latest' + run: C:\Users\runneradmin\.cache\alire\msys64\usr\bin\pacman --noconfirm -S tar + + - name: Test crate + run: ${{env.CHECKS_REPO}}/scripts/gh-build-crate.sh + shell: bash