File tree 5 files changed +37
-2
lines changed
5 files changed +37
-2
lines changed Original file line number Diff line number Diff line change
1
+ # use .envrc to set shared environment
2
+
3
+ # use .envrc.local to set own local environment
4
+ # source_env_if_exists .envrc.local
Original file line number Diff line number Diff line change
1
+ name : Build checks
2
+ run-name : ${{ github.actor }} Build test
3
+ on : [push]
4
+ jobs :
5
+ Build-Test :
6
+ runs-on : ubuntu-latest
7
+ steps :
8
+ - run : echo "The job was automatically triggered by a ${{ github.event_name }} event."
9
+ - run : echo "This job is now running on a ${{ runner.os }} server."
10
+ - run : echo "The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
11
+ - name : Check out repository code
12
+ uses : actions/checkout@v4
13
+ - run : echo "The ${{ github.repository }} repository has been cloned to the runner."
14
+ - run : echo "The workflow is now ready to test your code on the runner."
15
+ - name : List files in the repository
16
+ run : |
17
+ ls ${{ github.workspace }}
18
+ - name : Mount bazel cache # Optional
19
+ uses : actions/cache@v3
20
+ with :
21
+ path : " ~/.cache/bazel"
22
+ key : bazel
23
+ - run : bazel build //...
24
+ - run : bazel test //...
25
+ - run : echo "This job's status is ${{ job.status }}."
Original file line number Diff line number Diff line change @@ -4,4 +4,6 @@ bazel-out
4
4
bazel-testlogs
5
5
.vscode
6
6
genhtml
7
- * .log
7
+ * .log
8
+ * .out
9
+ .envrc.local
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ http_archive(
89
89
build_file_content = _ALL_CONTENT ,
90
90
strip_prefix = "zlib-1.3" ,
91
91
urls = [
92
- "https://zlib.net /zlib-1.3.tar.gz"
92
+ "https://github.com/madler/ zlib/releases/download/v1.3 /zlib-1.3.tar.gz"
93
93
],
94
94
sha256 = "FF0BA4C292013DBC27530B3A81E1F9A813CD39DE01CA5E0F8BF355702EFA593E" ,
95
95
)
Original file line number Diff line number Diff line change
1
+
2
+ #define ARMA_USE_SUPERLU
3
+ #define ARMA_USE_LAPACK
4
+ #define ARMA_DONT_USE_WRAPPER
1
5
#include < iostream>
2
6
#include < armadillo>
3
7
You can’t perform that action at this time.
0 commit comments