File tree Expand file tree Collapse file tree 1 file changed +11
-14
lines changed Expand file tree Collapse file tree 1 file changed +11
-14
lines changed Original file line number Diff line number Diff line change 4
4
push :
5
5
branches :
6
6
- master
7
- - staging
8
- - trying
9
- schedule :
10
- - cron : ' 0 2 * * *' # To test `wasmer-nightly` with `libwasmer_archive_name`.
11
-
12
7
jobs :
13
8
test :
14
9
name : Build and Test
15
10
16
11
strategy :
17
12
matrix :
18
- go : [1.14, 1.15]
13
+ go : [1.14, 1.15, 1.22 ]
19
14
target :
20
- - id : ' linux-amd64'
21
- os : ' ubuntu-18 .04'
15
+ - id : " linux-amd64"
16
+ os : " ubuntu-24 .04"
22
17
23
18
# - id: 'linux-aarch64'
24
19
# os: ['self-hosted', 'linux', 'ARM64']
25
20
26
- - id : ' darwin-amd64'
27
- os : ' macos-latest'
21
+ - id : " darwin-amd64"
22
+ os : " macos-latest"
28
23
29
- - id : ' linux-amd64'
30
- os : ' ubuntu-18 .04'
31
- libwasmer_archive_name : ' wasmer-linux-amd64.tar.gz'
24
+ - id : " linux-amd64"
25
+ os : " ubuntu-24 .04"
26
+ libwasmer_archive_name : " wasmer-linux-amd64.tar.gz"
32
27
fail-fast : true
33
28
34
29
runs-on : ${{ matrix.target.os }}
66
61
continue-on-error : true
67
62
shell : bash
68
63
run : |
69
- libwasmer_url=$(curl -s https://api.github.com/repos/wasmerio/wasmer-nightly/releases/latest | jq --raw-output '.assets[] | select(.name == "${{ matrix.target.libwasmer_archive_name }}") | .browser_download_url')
64
+ libwasmer_url=$(curl -s https://api.github.com/repos/wasmerio/wasmer/releases/latest | \
65
+ jq --raw-output '.assets[] | select(.name == "${{ matrix.target.libwasmer_archive_name }}") | .browser_download_url')
70
66
mkdir -p libwasmer
71
67
curl -L $libwasmer_url > release.tar.gz
72
68
tar xzvf release.tar.gz -C libwasmer
78
74
shell : bash
79
75
run : |
80
76
just examples
77
+
81
78
# Skipped for now because of Github banning the API request from actions.
82
79
# You can find more info in this PR: https://github.com/wasmerio/wasmer-go/pull/118#issuecomment-588487544
83
80
# - name: Test bazel build
You can’t perform that action at this time.
0 commit comments