We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 003ed3e commit 6e3e705Copy full SHA for 6e3e705
1 file changed
.github/Dockerfile
@@ -53,14 +53,14 @@ RUN python3.12 -m venv /opt/MFC/build/venv && \
53
RUN echo "TARGET=$TARGET CC=$CC_COMPILER FC=$FC_COMPILER" && \
54
cd /opt/MFC && \
55
if [ "$TARGET" = "gpu" ]; then \
56
- ./mfc.sh build --gpu -j $(nproc); \
+ ./mfc.sh build --gpu acc -j $(nproc); \
57
else \
58
./mfc.sh build -j $(nproc); \
59
fi
60
61
RUN cd /opt/MFC && \
62
63
- ./mfc.sh test -a --dry-run --gpu -j $(nproc); \
+ ./mfc.sh test -a --dry-run --gpu acc -j $(nproc); \
64
65
./mfc.sh test -a --dry-run -j $(nproc); \
66
0 commit comments