diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2022-09-04 15:15:18 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2022-09-05 01:33:22 +0200 |
commit | 06c1b20ec726faaf303dadffeca8450f945cc567 (patch) | |
tree | 9495a9a305fcd1e48808ffdd155f8ecf06b5c5a7 /.github | |
parent | 57656d7fe467af8a74a6df0abb1814411e3efd40 (diff) |
Added activate.sh script and run CI test.v1.0
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e5b1825..284cd2a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -42,6 +42,15 @@ jobs: - name: SHA512 run: | sha512sum -b ./mingw-w64-toolchain.tbz2 >./mingw-w64-toolchain.tbz2.sha512 + - name: Activate + run: | + mkdir tmp + cd tmp + tar -xjf ../mingw-w64-toolchain.tbz2 + cd .. + source ./tmp/mingw-w64-sysroot/activate.sh + x86_64-w64-mingw32-gcc -v + x86_64-w64-mingw32-g++ -v - uses: actions/upload-artifact@v2 with: name: mingw-w64-toolchain |