Skip to content

Commit 32471fe

Browse files
authored
Merge pull request #66 from newdigate/noinstall
Noinstall
2 parents 746393e + 812d994 commit 32471fe

15 files changed

+59
-607
lines changed

.github/workflows/soundio.yml

Lines changed: 0 additions & 32 deletions
This file was deleted.

.github/workflows/teensy41_ex_array.yml

Lines changed: 0 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -18,73 +18,6 @@ jobs:
1818
steps:
1919
- uses: actions/checkout@v2
2020

21-
- uses: actions/checkout@v2
22-
with:
23-
repository: newdigate/teensy-cmake-macros
24-
path: deps/teensy-cmake-macros
25-
26-
- uses: actions/checkout@v2
27-
with:
28-
repository: PaulStoffregen/cores.git
29-
path: deps/cores
30-
fetch-depth: 1
31-
ref: master
32-
33-
- uses: actions/checkout@v2
34-
with:
35-
repository: PaulStoffregen/Audio.git
36-
path: deps/Audio
37-
fetch-depth: 1
38-
ref: master
39-
40-
- uses: actions/checkout@v2
41-
with:
42-
repository: PaulStoffregen/SD.git
43-
path: deps/SD
44-
fetch-depth: 1
45-
ref: Juse_Use_SdFat
46-
47-
- uses: actions/checkout@v2
48-
with:
49-
repository: PaulStoffregen/Wire.git
50-
path: deps/Wire
51-
fetch-depth: 1
52-
ref: master
53-
54-
- uses: actions/checkout@v2
55-
with:
56-
repository: PaulStoffregen/SPI.git
57-
path: deps/SPI
58-
fetch-depth: 1
59-
ref: master
60-
61-
- uses: actions/checkout@v2
62-
with:
63-
repository: PaulStoffregen/SerialFlash.git
64-
path: deps/SerialFlash
65-
fetch-depth: 1
66-
ref: master
67-
68-
- uses: actions/checkout@v2
69-
with:
70-
repository: PaulStoffregen/arm_math.git
71-
path: deps/arm_math
72-
ref: master
73-
74-
- uses: actions/checkout@v2
75-
with:
76-
repository: PaulStoffregen/SdFat.git
77-
path: deps/SdFat
78-
fetch-depth: 1
79-
ref: master
80-
81-
- uses: actions/checkout@v2
82-
with:
83-
repository: PaulStoffregen/LittleFS.git
84-
path: deps/LittleFS
85-
fetch-depth: 1
86-
ref: main
87-
8821
- name: download toolchain
8922
run: |
9023
curl -L "https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2019q4/RC2.1/gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2" --output /tmp/gcc-arm-none-eabi.tar.bz2
@@ -94,9 +27,6 @@ jobs:
9427
rm /tmp/gcc-arm-none-eabi.tar.bz2
9528
echo "/opt/gcc-arm-none-eabi-9-2019-q4-major/bin"
9629
97-
- name: install teensy-cmake-macros
98-
run: cd deps/teensy-cmake-macros && mkdir cmake-build-debug && cd cmake-build-debug && cmake -DCMAKE_BUILD_TYPE=Debug .. && sudo make install
99-
10030
- name: build
10131
run: mkdir cmake-build-debug && cd cmake-build-debug && cmake .. -DCMAKE_TOOLCHAIN_FILE:FILEPATH="${{github.workspace}}/cmake/toolchains/teensy41.cmake" && make array_hex
10232

.github/workflows/teensy41_ex_littlefs.yml

Lines changed: 0 additions & 77 deletions
Original file line numberDiff line numberDiff line change
@@ -18,80 +18,6 @@ jobs:
1818
steps:
1919
- uses: actions/checkout@v2
2020

21-
- uses: actions/checkout@v2
22-
with:
23-
repository: newdigate/teensy-cmake-macros
24-
path: deps/teensy-cmake-macros
25-
26-
- uses: actions/checkout@v2
27-
with:
28-
repository: PaulStoffregen/cores.git
29-
path: deps/cores
30-
fetch-depth: 1
31-
ref: master
32-
33-
- uses: actions/checkout@v2
34-
with:
35-
repository: PaulStoffregen/Audio.git
36-
path: deps/Audio
37-
fetch-depth: 1
38-
ref: master
39-
40-
- uses: actions/checkout@v2
41-
with:
42-
repository: PaulStoffregen/SD.git
43-
path: deps/SD
44-
fetch-depth: 1
45-
ref: Juse_Use_SdFat
46-
47-
- uses: actions/checkout@v2
48-
with:
49-
repository: PaulStoffregen/Wire.git
50-
path: deps/Wire
51-
fetch-depth: 1
52-
ref: master
53-
54-
- uses: actions/checkout@v2
55-
with:
56-
repository: PaulStoffregen/SPI.git
57-
path: deps/SPI
58-
fetch-depth: 1
59-
ref: master
60-
61-
- uses: actions/checkout@v2
62-
with:
63-
repository: PaulStoffregen/SerialFlash.git
64-
path: deps/SerialFlash
65-
fetch-depth: 1
66-
ref: master
67-
68-
- uses: actions/checkout@v2
69-
with:
70-
repository: PaulStoffregen/arm_math.git
71-
path: deps/arm_math
72-
ref: master
73-
74-
- uses: actions/checkout@v2
75-
with:
76-
repository: PaulStoffregen/SdFat.git
77-
path: deps/SdFat
78-
fetch-depth: 1
79-
ref: master
80-
81-
- uses: actions/checkout@v2
82-
with:
83-
repository: PaulStoffregen/LittleFS.git
84-
path: deps/LittleFS
85-
fetch-depth: 1
86-
ref: main
87-
88-
- uses: actions/checkout@v2
89-
with:
90-
repository: PaulStoffregen/SerialFlash.git
91-
path: deps/SerialFlash
92-
fetch-depth: 1
93-
ref: master
94-
9521
- name: download toolchain
9622
run: |
9723
curl -L "https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2019q4/RC2.1/gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2" --output /tmp/gcc-arm-none-eabi.tar.bz2
@@ -101,9 +27,6 @@ jobs:
10127
rm /tmp/gcc-arm-none-eabi.tar.bz2
10228
echo "/opt/gcc-arm-none-eabi-9-2019-q4-major/bin"
10329
104-
- name: install teensy-cmake-macros
105-
run: cd deps/teensy-cmake-macros && mkdir cmake-build-debug && cd cmake-build-debug && cmake -DCMAKE_BUILD_TYPE=Debug .. && sudo make install
106-
10730
- name: build
10831
run: mkdir cmake-build-debug && cd cmake-build-debug && cmake .. -DCMAKE_TOOLCHAIN_FILE:FILEPATH="${{github.workspace}}/cmake/toolchains/teensy41.cmake" && make littlefs_raw_hex
10932

.github/workflows/teensy41_ex_sdraw.yml

Lines changed: 0 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -18,73 +18,6 @@ jobs:
1818
steps:
1919
- uses: actions/checkout@v2
2020

21-
- uses: actions/checkout@v2
22-
with:
23-
repository: newdigate/teensy-cmake-macros
24-
path: deps/teensy-cmake-macros
25-
26-
- uses: actions/checkout@v2
27-
with:
28-
repository: PaulStoffregen/cores.git
29-
path: deps/cores
30-
fetch-depth: 1
31-
ref: master
32-
33-
- uses: actions/checkout@v2
34-
with:
35-
repository: PaulStoffregen/Audio.git
36-
path: deps/Audio
37-
fetch-depth: 1
38-
ref: master
39-
40-
- uses: actions/checkout@v2
41-
with:
42-
repository: PaulStoffregen/SD.git
43-
path: deps/SD
44-
fetch-depth: 1
45-
ref: Juse_Use_SdFat
46-
47-
- uses: actions/checkout@v2
48-
with:
49-
repository: PaulStoffregen/Wire.git
50-
path: deps/Wire
51-
fetch-depth: 1
52-
ref: master
53-
54-
- uses: actions/checkout@v2
55-
with:
56-
repository: PaulStoffregen/SPI.git
57-
path: deps/SPI
58-
fetch-depth: 1
59-
ref: master
60-
61-
- uses: actions/checkout@v2
62-
with:
63-
repository: PaulStoffregen/SerialFlash.git
64-
path: deps/SerialFlash
65-
fetch-depth: 1
66-
ref: master
67-
68-
- uses: actions/checkout@v2
69-
with:
70-
repository: PaulStoffregen/arm_math.git
71-
path: deps/arm_math
72-
ref: master
73-
74-
- uses: actions/checkout@v2
75-
with:
76-
repository: PaulStoffregen/SdFat.git
77-
path: deps/SdFat
78-
fetch-depth: 1
79-
ref: master
80-
81-
- uses: actions/checkout@v2
82-
with:
83-
repository: PaulStoffregen/LittleFS.git
84-
path: deps/LittleFS
85-
fetch-depth: 1
86-
ref: main
87-
8821
- name: download toolchain
8922
run: |
9023
curl -L "https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2019q4/RC2.1/gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2" --output /tmp/gcc-arm-none-eabi.tar.bz2
@@ -94,9 +27,6 @@ jobs:
9427
rm /tmp/gcc-arm-none-eabi.tar.bz2
9528
echo "/opt/gcc-arm-none-eabi-9-2019-q4-major/bin"
9629
97-
- name: install teensy-cmake-macros
98-
run: cd deps/teensy-cmake-macros && mkdir cmake-build-debug && cd cmake-build-debug && cmake -DCMAKE_BUILD_TYPE=Debug .. && sudo make install
99-
10030
- name: build
10131
run: mkdir cmake-build-debug && cd cmake-build-debug && cmake .. -DCMAKE_TOOLCHAIN_FILE:FILEPATH="${{github.workspace}}/cmake/toolchains/teensy41.cmake" && make sd_raw_hex
10232

.github/workflows/teensy41_ex_sdwav.yml

Lines changed: 0 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -18,73 +18,6 @@ jobs:
1818
steps:
1919
- uses: actions/checkout@v2
2020

21-
- uses: actions/checkout@v2
22-
with:
23-
repository: newdigate/teensy-cmake-macros
24-
path: deps/teensy-cmake-macros
25-
26-
- uses: actions/checkout@v2
27-
with:
28-
repository: PaulStoffregen/cores.git
29-
path: deps/cores
30-
fetch-depth: 1
31-
ref: master
32-
33-
- uses: actions/checkout@v2
34-
with:
35-
repository: PaulStoffregen/Audio.git
36-
path: deps/Audio
37-
fetch-depth: 1
38-
ref: master
39-
40-
- uses: actions/checkout@v2
41-
with:
42-
repository: PaulStoffregen/SD.git
43-
path: deps/SD
44-
fetch-depth: 1
45-
ref: Juse_Use_SdFat
46-
47-
- uses: actions/checkout@v2
48-
with:
49-
repository: PaulStoffregen/Wire.git
50-
path: deps/Wire
51-
fetch-depth: 1
52-
ref: master
53-
54-
- uses: actions/checkout@v2
55-
with:
56-
repository: PaulStoffregen/SPI.git
57-
path: deps/SPI
58-
fetch-depth: 1
59-
ref: master
60-
61-
- uses: actions/checkout@v2
62-
with:
63-
repository: PaulStoffregen/SerialFlash.git
64-
path: deps/SerialFlash
65-
fetch-depth: 1
66-
ref: master
67-
68-
- uses: actions/checkout@v2
69-
with:
70-
repository: PaulStoffregen/arm_math.git
71-
path: deps/arm_math
72-
ref: master
73-
74-
- uses: actions/checkout@v2
75-
with:
76-
repository: PaulStoffregen/SdFat.git
77-
path: deps/SdFat
78-
fetch-depth: 1
79-
ref: master
80-
81-
- uses: actions/checkout@v2
82-
with:
83-
repository: PaulStoffregen/LittleFS.git
84-
path: deps/LittleFS
85-
fetch-depth: 1
86-
ref: main
87-
8821
- name: download toolchain
8922
run: |
9023
curl -L "https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2019q4/RC2.1/gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2" --output /tmp/gcc-arm-none-eabi.tar.bz2
@@ -94,9 +27,6 @@ jobs:
9427
rm /tmp/gcc-arm-none-eabi.tar.bz2
9528
echo "/opt/gcc-arm-none-eabi-9-2019-q4-major/bin"
9629
97-
- name: install teensy-cmake-macros
98-
run: cd deps/teensy-cmake-macros && mkdir cmake-build-debug && cd cmake-build-debug && cmake -DCMAKE_BUILD_TYPE=Debug .. && sudo make install
99-
10030
- name: build
10131
run: mkdir cmake-build-debug && cd cmake-build-debug && cmake .. -DCMAKE_TOOLCHAIN_FILE:FILEPATH="${{github.workspace}}/cmake/toolchains/teensy41.cmake" && make sd_wav_hex
10232

0 commit comments

Comments
 (0)