Skip to content

Commit

Permalink
Unformat ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Joseph-Edwards authored and ChrisJefferson committed Aug 26, 2024
1 parent 4c83800 commit ff8e268
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "ferret CI"
name: 'ferret CI'

on:
pull_request:
Expand All @@ -15,32 +15,32 @@ jobs:
strategy:
matrix:
gap:
- "master"
- 'master'
flags:
- ""
- "--enable-checking"
- "--enable-timing"
- "--enable-checking --enable-timing"
- ''
- '--enable-checking'
- '--enable-timing'
- '--enable-checking --enable-timing'

include:
- gap: "stable-4.13"
flags: ""
- gap: "stable-4.12"
flags: ""
- gap: 'stable-4.13'
flags: ''
- gap: 'stable-4.12'
flags: ''
env:
CONF_FLAG: ${{ matrix.flags }}
BRANCH: ${{ matrix.gap }}

steps:
- uses: actions/checkout@v4

- name: "Display configuration"
- name: 'Display configuration'
shell: bash
run: |
echo $BRANCH ":" $CONF_FLAG
echo $CXX ":" $CC
- name: "Install needed apt_packages"
- name: 'Install needed apt_packages'
shell: bash
run: |
packages=(
Expand All @@ -50,7 +50,7 @@ jobs:
sudo apt-get update
sudo apt-get install "${packages[@]}"
- name: "Build GAP and its packages"
- name: 'Build GAP and its packages'
shell: bash
run: |
pwd
Expand All @@ -59,15 +59,15 @@ jobs:
( cd gap && ./configure && make && make bootstrap-pkg-full V=1)
( cd gap/pkg && ../bin/BuildPackages.sh io* )
- name: "Build ferret"
- name: 'Build ferret'
shell: bash
run: |
pwd
echo ln -s $(pwd) gap/pkg/ferret
ln -s $(pwd) gap/pkg/ferret
( cd gap/pkg/ferret && ./autogen.sh && ./configure $CONF_FLAG && make V=1)
- name: "Run ferret tests"
- name: 'Run ferret tests'
shell: bash
run: |
(cd gap/pkg/ferret && scripts/quick_test.sh ${MAKEFLAG})

0 comments on commit ff8e268

Please sign in to comment.