1
1
name : arpack-ng
2
- on : [push, pull_request_target ]
2
+ on : [push, pull_request ]
3
3
jobs :
4
4
ubuntu_latest_cmake :
5
5
runs-on : ubuntu-latest
6
6
steps :
7
7
- name : Clone and check out repository code
8
8
uses : actions/checkout@v2
9
+ with :
10
+ fetch-depth : 0
11
+ ref : ${{github.event.pull_request.head.ref}} # Branch where changes are implemented.
12
+ repository : ${{github.event.pull_request.head.repo.full_name}} # Repo where changes are implemented.
9
13
- name : Check commit
10
- run : git log -1
14
+ run : |
15
+ git log -1
11
16
- name : Update OS
12
17
run : sudo apt-get update
13
18
- name : Install apt-get dependencies
25
30
steps :
26
31
- name : Clone and check out repository code
27
32
uses : actions/checkout@v2
33
+ with :
34
+ fetch-depth : 0
35
+ ref : ${{github.event.pull_request.head.ref}} # Branch where changes are implemented.
36
+ repository : ${{github.event.pull_request.head.repo.full_name}} # Repo where changes are implemented.
28
37
- name : Check commit
29
- run : git log -1
38
+ run : |
39
+ git log -1
30
40
- name : Update OS
31
41
run : sudo apt-get update
32
42
- name : Install apt-get dependencies
43
53
steps :
44
54
- name : Clone and check out repository code
45
55
uses : actions/checkout@v2
56
+ with :
57
+ fetch-depth : 0
58
+ ref : ${{github.event.pull_request.head.ref}} # Branch where changes are implemented.
59
+ repository : ${{github.event.pull_request.head.repo.full_name}} # Repo where changes are implemented.
46
60
- name : Check commit
47
- run : git log -1
61
+ run : |
62
+ git log -1
48
63
- name : Update OS
49
64
run : sudo apt-get update
50
65
- name : Install apt-get dependencies
68
83
steps :
69
84
- name : Clone and check out repository code
70
85
uses : actions/checkout@v2
86
+ with :
87
+ fetch-depth : 0
88
+ ref : ${{github.event.pull_request.head.ref}} # Branch where changes are implemented.
89
+ repository : ${{github.event.pull_request.head.repo.full_name}} # Repo where changes are implemented.
71
90
- name : Check commit
72
- run : git log -1
91
+ run : |
92
+ git log -1
73
93
- name : Update OS
74
94
run : sudo apt-get update
75
95
- name : Install apt-get dependencies
@@ -87,74 +107,21 @@ jobs:
87
107
FCFLAGS : " -DMKL_ILP64 -I/usr/include/mkl"
88
108
LIBS : " -Wl,--no-as-needed -L/usr/lib/x86_64-linux-gnu -lmkl_sequential -lmkl_core -lpthread -lm -ldl"
89
109
INTERFACE64 : " 1"
90
- ubuntu_latest_coverage :
91
- runs-on : ubuntu-latest
92
- steps :
93
- - name : Clone and check out repository code
94
- uses : actions/checkout@v2
95
- - name : Check commit
96
- run : git log -1
97
- - name : Update OS
98
- run : sudo apt-get update
99
- - name : Install apt-get dependencies
100
- run : sudo apt-get install -y gfortran gcc g++ openmpi-bin libopenmpi-dev libblas-dev liblapack-dev cmake
101
- - name : Run job
102
- run : |
103
- mkdir build
104
- cd build
105
- cmake -DEXAMPLES=ON -DMPI=ON -DICB=ON -DCOVERALLS=ON ..
106
- make all
107
- make test
108
- make coveralls
109
- docker_centos :
110
- runs-on : ubuntu-latest
111
- steps :
112
- - name : Clone and check out repository code
113
- uses : actions/checkout@v2
114
- - name : Check commit
115
- run : git log -1
116
- - name : Update OS
117
- run : sudo apt-get update
118
- - name : Login to Docker Hub
119
- run : sudo docker login -u "${{ secrets.DOCKER_USERNAME }}" -p "${{ secrets.DOCKER_TOKEN }}"
120
- - name : Run job
121
- run : ./scripts/travis_centos.sh
122
- docker_fedora :
123
- runs-on : ubuntu-latest
124
- steps :
125
- - name : Clone and check out repository code
126
- uses : actions/checkout@v2
127
- - name : Check commit
128
- run : git log -1
129
- - name : Update OS
130
- run : sudo apt-get update
131
- - name : Login to Docker Hub
132
- run : sudo docker login -u "${{ secrets.DOCKER_USERNAME }}" -p "${{ secrets.DOCKER_TOKEN }}"
133
- - name : Run job
134
- run : ./scripts/travis_fedora.sh setup mpich
135
- docker_debian :
136
- runs-on : ubuntu-latest
137
- steps :
138
- - name : Clone and check out repository code
139
- uses : actions/checkout@v2
140
- - name : Check commit
141
- run : git log -1
142
- - name : Update OS
143
- run : sudo apt-get update
144
- - name : Login to Docker Hub
145
- run : sudo docker login -u "${{ secrets.DOCKER_USERNAME }}" -p "${{ secrets.DOCKER_TOKEN }}"
146
- - name : Run job
147
- run : ./scripts/travis_ubuntu.sh debian
148
110
macos_latest_cmake :
149
111
runs-on : macos-latest
150
112
steps :
151
113
- name : Clone and check out repository code
152
114
uses : actions/checkout@v2
115
+ with :
116
+ fetch-depth : 0
117
+ ref : ${{github.event.pull_request.head.ref}} # Branch where changes are implemented.
118
+ repository : ${{github.event.pull_request.head.repo.full_name}} # Repo where changes are implemented.
153
119
- name : Check commit
154
- run : git log -1
120
+ run : |
121
+ git log -1
155
122
- name : Update OS
156
123
run : |
157
- brew rm gcc
124
+ brew uninstall --ignore-dependencies gcc
158
125
brew update
159
126
softwareupdate --install --all
160
127
- name : Install brew dependencies
@@ -166,19 +133,30 @@ jobs:
166
133
run : |
167
134
mkdir -p build
168
135
cd build
169
- LIBS="-framework Accelerate" FFLAGS="-ff2c -fno-second-underscore" FCFLAGS="-ff2c -fno-second-underscore" cmake -DBLA_VENDOR=Generic -DEXAMPLES=ON -DICB=ON -DMPI=ON ..
136
+ export FC=mpif90 # Uses gfortran.
137
+ export FFLAGS="-ff2c -fno-second-underscore"
138
+ export CC=mpicc # Uses clang.
139
+ export CFLAGS="-Qunused-arguments"
140
+ export CXX=mpic++ # Uses clang++.
141
+ export CXXFLAGS="-Qunused-arguments"
142
+ LIBS="-framework Accelerate" cmake -DBLA_VENDOR=Generic -DEXAMPLES=ON -DICB=ON -DMPI=ON ..
170
143
make all
171
144
make test
172
145
macos_latest_autotools :
173
146
runs-on : macos-latest
174
147
steps :
175
148
- name : Clone and check out repository code
176
149
uses : actions/checkout@v2
150
+ with :
151
+ fetch-depth : 0
152
+ ref : ${{github.event.pull_request.head.ref}} # Branch where changes are implemented.
153
+ repository : ${{github.event.pull_request.head.repo.full_name}} # Repo where changes are implemented.
177
154
- name : Check commit
178
- run : git log -1
155
+ run : |
156
+ git log -1
179
157
- name : Update OS
180
158
run : |
181
- brew rm gcc
159
+ brew uninstall --ignore-dependencies gcc
182
160
brew update
183
161
softwareupdate --install --all
184
162
- name : Install brew dependencies
@@ -197,8 +175,13 @@ jobs:
197
175
steps :
198
176
- name : Clone and check out repository code
199
177
uses : actions/checkout@v2
178
+ with :
179
+ fetch-depth : 0
180
+ ref : ${{github.event.pull_request.head.ref}} # Branch where changes are implemented.
181
+ repository : ${{github.event.pull_request.head.repo.full_name}} # Repo where changes are implemented.
200
182
- name : Check commit
201
- run : git log -1
183
+ run : |
184
+ git log -1
202
185
- name : Update OS
203
186
run : |
204
187
choco install -y msys2
0 commit comments