1
0
mirror of https://github.com/google/cpu_features.git synced 2025-07-02 21:53:18 +02:00

Move ci folder and make naming more consistent (#233)

This commit is contained in:
Guillaume Chatelet
2022-03-15 13:26:25 +01:00
committed by GitHub
parent 70ca4fd06f
commit c219c921c5
21 changed files with 83 additions and 110 deletions

View File

@ -1,4 +1,4 @@
name: aarch64 Linux
name: AArch64 Linux CMake
on:
push:
@ -9,7 +9,7 @@ on:
jobs:
# Building using the github runner environement directly.
aarch64:
make:
runs-on: ubuntu-latest
strategy:
matrix:
@ -23,6 +23,6 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Build
run: make --directory=ci ${TARGET}_build
run: make --directory=cmake/ci ${TARGET}_build
- name: Test
run: make --directory=ci ${TARGET}_test
run: make --directory=cmake/ci ${TARGET}_test

View File

@ -1,4 +1,4 @@
name: amd64 FreeBSD
name: amd64 FreeBSD CMake
on:
push:
@ -10,7 +10,7 @@ on:
jobs:
# Only MacOS hosted runner provides virtualisation with vagrant/virtualbox installed.
# see: https://github.com/actions/virtual-environments/tree/main/images/macos
freebsd:
make:
runs-on: macos-10.15
steps:
- uses: actions/checkout@v2
@ -19,4 +19,4 @@ jobs:
- name: VirtualBox version
run: virtualbox -h
- name: Build
run: cd ci/vagrant/freebsd && vagrant up
run: cd cmake/ci/vagrant/freebsd && vagrant up

View File

@ -1,31 +0,0 @@
name: amd64 Linux
on:
push:
pull_request:
schedule:
# min hours day(month) month day(week)
- cron: '0 0 7,22 * *'
jobs:
# Building using the github runner environement directly.
make:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Env
run: make --directory=ci amd64_env
- name: Devel
run: make --directory=ci amd64_devel
- name: Build
run: make --directory=ci amd64_build
- name: Test
run: make --directory=ci amd64_test
- name: Install Env
run: make --directory=ci amd64_install_env
- name: Install Devel
run: make --directory=ci amd64_install_devel
- name: Install Build
run: make --directory=ci amd64_install_build
- name: Install Test
run: make --directory=ci amd64_install_test

View File

@ -1,4 +1,4 @@
name: amd64 Bazel Linux
name: amd64 Linux Bazel
on:
push:

31
.github/workflows/amd64_linux_cmake.yml vendored Normal file
View File

@ -0,0 +1,31 @@
name: amd64 Linux CMake
on:
push:
pull_request:
schedule:
# min hours day(month) month day(week)
- cron: '0 0 7,22 * *'
jobs:
# Building using the github runner environement directly.
make:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Env
run: make --directory=cmake/ci amd64_env
- name: Devel
run: make --directory=cmake/ci amd64_devel
- name: Build
run: make --directory=cmake/ci amd64_build
- name: Test
run: make --directory=cmake/ci amd64_test
- name: Install Env
run: make --directory=cmake/ci amd64_install_env
- name: Install Devel
run: make --directory=cmake/ci amd64_install_devel
- name: Install Build
run: make --directory=cmake/ci amd64_install_build
- name: Install Test
run: make --directory=cmake/ci amd64_install_test

View File

@ -1,4 +1,4 @@
name: amd64 macOS
name: amd64 MacOS CMake
on:
push:

View File

@ -1,4 +1,4 @@
name: amd64 Windows
name: amd64 Windows CMake
on:
push:

View File

@ -1,4 +1,4 @@
name: arm Linux
name: ARM Linux CMake
on:
push:
@ -9,7 +9,7 @@ on:
jobs:
# Building using the github runner environement directly.
arm:
make:
runs-on: ubuntu-latest
strategy:
matrix:
@ -26,6 +26,6 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Build
run: make --directory=ci ${TARGET}_build
run: make --directory=cmake/ci ${TARGET}_build
- name: Test
run: make --directory=ci ${TARGET}_test
run: make --directory=cmake/ci ${TARGET}_test

View File

@ -1,4 +1,4 @@
name: mips Linux
name: MIPS Linux CMake
on:
push:
@ -9,7 +9,7 @@ on:
jobs:
# Building using the github runner environement directly.
mips:
make:
runs-on: ubuntu-latest
strategy:
matrix:
@ -25,6 +25,6 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Build
run: make --directory=ci ${TARGET}_build
run: make --directory=cmake/ci ${TARGET}_build
- name: Test
run: make --directory=ci ${TARGET}_test
run: make --directory=cmake/ci ${TARGET}_test