Skip to content

Commit 7e85cb1

Browse files
committed
CI: fix github-actions workflow.
c45094c broke the workflow: CI triggered on PR (modified code) was actually testing master codebase (untouched code). Solution: - Drop pull_request_target: use pull_request - Drop all docker jobs (which need pull_request_target to be based on master to be able to access opencollab secrets) - Remove opencollab secrets (docker login and password) - Drop coverage jobs (OK with TravisCI but never worked with github-actions)
1 parent 645db9e commit 7e85cb1

7 files changed

+84
-741
lines changed

.github/workflows/jobs.yml

+52-69
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
name: arpack-ng
2-
on: [push, pull_request_target]
2+
on: [push, pull_request]
33
jobs:
44
ubuntu_latest_cmake:
55
runs-on: ubuntu-latest
66
steps:
77
- name: Clone and check out repository code
88
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.
913
- name: Check commit
10-
run: git log -1
14+
run: |
15+
git log -1
1116
- name: Update OS
1217
run: sudo apt-get update
1318
- name: Install apt-get dependencies
@@ -25,8 +30,13 @@ jobs:
2530
steps:
2631
- name: Clone and check out repository code
2732
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.
2837
- name: Check commit
29-
run: git log -1
38+
run: |
39+
git log -1
3040
- name: Update OS
3141
run: sudo apt-get update
3242
- name: Install apt-get dependencies
@@ -43,8 +53,13 @@ jobs:
4353
steps:
4454
- name: Clone and check out repository code
4555
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.
4660
- name: Check commit
47-
run: git log -1
61+
run: |
62+
git log -1
4863
- name: Update OS
4964
run: sudo apt-get update
5065
- name: Install apt-get dependencies
@@ -68,8 +83,13 @@ jobs:
6883
steps:
6984
- name: Clone and check out repository code
7085
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.
7190
- name: Check commit
72-
run: git log -1
91+
run: |
92+
git log -1
7393
- name: Update OS
7494
run: sudo apt-get update
7595
- name: Install apt-get dependencies
@@ -87,74 +107,21 @@ jobs:
87107
FCFLAGS: "-DMKL_ILP64 -I/usr/include/mkl"
88108
LIBS: "-Wl,--no-as-needed -L/usr/lib/x86_64-linux-gnu -lmkl_sequential -lmkl_core -lpthread -lm -ldl"
89109
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
148110
macos_latest_cmake:
149111
runs-on: macos-latest
150112
steps:
151113
- name: Clone and check out repository code
152114
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.
153119
- name: Check commit
154-
run: git log -1
120+
run: |
121+
git log -1
155122
- name: Update OS
156123
run: |
157-
brew rm gcc
124+
brew uninstall --ignore-dependencies gcc
158125
brew update
159126
softwareupdate --install --all
160127
- name: Install brew dependencies
@@ -166,19 +133,30 @@ jobs:
166133
run: |
167134
mkdir -p build
168135
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 ..
170143
make all
171144
make test
172145
macos_latest_autotools:
173146
runs-on: macos-latest
174147
steps:
175148
- name: Clone and check out repository code
176149
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.
177154
- name: Check commit
178-
run: git log -1
155+
run: |
156+
git log -1
179157
- name: Update OS
180158
run: |
181-
brew rm gcc
159+
brew uninstall --ignore-dependencies gcc
182160
brew update
183161
softwareupdate --install --all
184162
- name: Install brew dependencies
@@ -197,8 +175,13 @@ jobs:
197175
steps:
198176
- name: Clone and check out repository code
199177
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.
200182
- name: Check commit
201-
run: git log -1
183+
run: |
184+
git log -1
202185
- name: Update OS
203186
run: |
204187
choco install -y msys2

CMakeLists.txt

-43
Original file line numberDiff line numberDiff line change
@@ -39,17 +39,6 @@ option(INTERFACE64 "use the 64-bit integer interface (ILP64) for ARPACK, BLAS an
3939

4040
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
4141

42-
# We don't want this to run on every build.
43-
option(COVERALLS "Generate coveralls data" OFF)
44-
if (COVERALLS)
45-
include(Coveralls)
46-
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -O0 -fprofile-arcs -ftest-coverage")
47-
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g -O0 -fprofile-arcs -ftest-coverage")
48-
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g -O0 -fprofile-arcs -ftest-coverage")
49-
# The no space is by design: issue in cmake. See CMP0004.
50-
set(EXTRA_LDFLAGS "${EXTRA_LDFLAGS}-lgcov")
51-
endif()
52-
5342
function(prefixlist list_name prefix)
5443
set(${list_name}_TMP)
5544
foreach(l ${${list_name}})
@@ -830,38 +819,6 @@ set(CPACK_SOURCE_IGNORE_FILES "/BUILD/" "/Build/" "/build/" "/local/") # Do not
830819
set(CPACK_SOURCE_PACKAGE_FILE_NAME "arpack-ng-${CPACK_VERSION_MAJOR}.${CPACK_VERSION_MINOR}.${CPACK_VERSION_PATCH}")
831820
include(CPack)
832821

833-
if (COVERALLS)
834-
set(arpack_TST_SRC
835-
${arpack_SOURCE_DIR}/TESTS/bug_1323.f
836-
${arpack_SOURCE_DIR}/TESTS/bug_142.f
837-
${arpack_SOURCE_DIR}/TESTS/bug_142_gen.f
838-
${arpack_SOURCE_DIR}/TESTS/bug_58_double.f
839-
${arpack_SOURCE_DIR}/TESTS/bug_79_double_complex.f
840-
${arpack_SOURCE_DIR}/TESTS/dnsimp.f
841-
${arpack_SOURCE_DIR}/TESTS/mmio.f
842-
${arpack_SOURCE_DIR}/TESTS/bug_1315_single.c
843-
${arpack_SOURCE_DIR}/TESTS/bug_1315_double.c
844-
${arpack_SOURCE_DIR}/TESTS/icb_arpack_c.c
845-
${arpack_SOURCE_DIR}/TESTS/icb_arpack_cpp.cpp
846-
)
847-
file(GLOB_RECURSE arpack_EX_F_SRC "${arpack_SOURCE_DIR}/EXAMPLES/*/*.f")
848-
set(arpack_EX_CPP_SRC ${arpack_SOURCE_DIR}/EXAMPLES/MATRIX_MARKET/arpackmm.cpp)
849-
850-
set(parpack_TST_SRC
851-
${arpack_SOURCE_DIR}/PARPACK/TESTS/MPI/issue46.f
852-
${arpack_SOURCE_DIR}/PARPACK/TESTS/MPI/icb_parpack_c.c
853-
${arpack_SOURCE_DIR}/PARPACK/TESTS/MPI/icb_parpack_cpp.cpp
854-
)
855-
file(GLOB_RECURSE parpack_EX_F_SRC "${arpack_SOURCE_DIR}/PARPACK/EXAMPLES/MPI/*.f")
856-
857-
# Create the coveralls target.
858-
# Also lists the c/cpp files for test purposes
859-
coveralls_setup(
860-
"${arpacksrc_STAT_SRCS} ${arpackutil_STAT_SRCS} ${arpacksrc_ICB} ${arpack_TST_SRC} ${arpack_EX_F_SRC} ${arpack_EX_CPP_SRC} ${parpacksrc_STAT_SRCS} ${parpackutil_STAT_SRCS} ${parpacksrc_ICB} ${parpack_TST_SRC} ${parpack_EX_F_SRC}" # The source files.
861-
ON # If we should upload.
862-
"${PROJECT_SOURCE_DIR}/cmake/") # (Optional) Alternate project cmake module path.
863-
endif()
864-
865822
function(libsummary title include libraries)
866823
message(" -- ${title}:")
867824
foreach(inc ${include})

cmake/Coveralls.cmake

-128
This file was deleted.

0 commit comments

Comments
 (0)