File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -102,16 +102,14 @@ jobs:
102
102
run : ${{ matrix.install-dist }}
103
103
- name : Setup FLOW_LIB_PATH
104
104
run : echo "FLOW_LIB_PATH=$GITHUB_WORKSPACE/target" >> "$GITHUB_ENV"
105
- - name : Ensure flowc in PATH
106
- run : echo "PATH=$GITHUB_WORKSPACE/target/release:$PATH" >> "$GITHUB_ENV"
107
105
- name : Run cargo-dist
108
106
# This logic is a bit janky because it's trying to be a polyglot between
109
107
# powershell and bash since this will run on windows, macos, and linux!
110
108
# The two platforms don't agree on how to talk about env vars but they
111
109
# do agree on 'cat' and '$()' so we use that to marshal values between commands.
112
110
run : |
113
- # see if we have a built copy of flowc around
114
- find . -type f -name flowc
111
+ # make sure we flowc around to compile flowstdlib and flowsamples with
112
+ cargo install flowc
115
113
# Actually do builds and make zips and whatnot
116
114
cargo dist --target=${{ matrix.target }} --output-format=json > dist-manifest.json
117
115
echo "dist ran successfully"
You can’t perform that action at this time.
0 commit comments